mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
7 lines
252 B
Text
7 lines
252 B
Text
|
Import('env')
|
||
|
output = "../../../../Binary/linux/Plugins/Plugin_nJoy_SDL.so"
|
||
|
files = ["nJoy.cpp"
|
||
|
]
|
||
|
padenv=env.Copy(CXXFLAGS = " `pkg-config --cflags sdl`", LINKFLAGS = " `pkg-config --libs sdl`")
|
||
|
padenv.SharedLibrary(output, files, LIBS=["common"])
|