15 lines
453 B
Python
15 lines
453 B
Python
Import('env')
|
|
import sys
|
|
|
|
if sys.platform == 'darwin':
|
|
output = "../../../../Binary/mac/Plugins/Plugin_nJoy_SDL.so"
|
|
else:
|
|
output = "../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so"
|
|
|
|
files = [ "nJoy.cpp",
|
|
"GUI/AboutBox.cpp",
|
|
"GUI/ConfigBox.cpp",
|
|
]
|
|
padenv=env.Copy(CXXFLAGS = " `wx-config --cppflags` `pkg-config --cflags sdl`", LINKFLAGS = "`wx-config --libs` `pkg-config --libs sdl` ")
|
|
padenv.SharedLibrary(output, files, LIBS=["common"])
|