24 lines
424 B
Python
24 lines
424 B
Python
# -*- 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.Clone()
|
|
padenv.Append(
|
|
CXXFLAGS = [ '-fPIC' ],
|
|
LIBS = [ 'common' ],
|
|
)
|
|
if not env['osx64']:
|
|
padenv.SharedLibrary(output, files)
|