2008-07-23 18:53:54 +00:00
|
|
|
Import('env')
|
|
|
|
output = "../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so"
|
2008-07-26 12:28:17 +00:00
|
|
|
files = [ "nJoy.cpp",
|
|
|
|
"GUI/AboutDlg.cpp",
|
|
|
|
]
|
|
|
|
padenv=env.Copy(CXXFLAGS = " `wx-config --cppflags` `pkg-config --cflags sdl`", LINKFLAGS = "`wx-config --libs` `pkg-config --libs sdl` ")
|
2008-07-23 18:53:54 +00:00
|
|
|
padenv.SharedLibrary(output, files, LIBS=["common"])
|