dolphin/Source/Plugins/Plugin_nJoy_SDL/Src/SConscript
2008-11-13 08:12:48 +00:00

20 lines
304 B
Python

# -*- python -*-
Import('env')
import sys
name = "Plugin_nJoy_SDL"
files = [
'nJoy.cpp',
'GUI/AboutBox.cpp',
'GUI/ConfigBox.cpp',
]
padenv = env.Clone()
padenv.Append(
CXXFLAGS = [ '-fPIC' ],
LIBS = [ 'common' ],
)
if not env['osx64']:
padenv.SharedLibrary(env['plugin_dir']+name, files)