2010-04-13 06:09:45 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
import sys
|
|
|
|
|
|
|
|
name = "Plugin_WiimoteNew"
|
|
|
|
wiinewenv = env.Clone()
|
|
|
|
|
|
|
|
files = [
|
|
|
|
'WiimoteEmu/WiimoteEmu.cpp',
|
|
|
|
'WiimoteEmu/Attachment/Classic.cpp',
|
|
|
|
'WiimoteEmu/Attachment/Attachment.cpp',
|
|
|
|
'WiimoteEmu/Attachment/Nunchuk.cpp',
|
|
|
|
'WiimoteEmu/EmuSubroutines.cpp',
|
|
|
|
'WiimoteEmu/Encryption.cpp',
|
|
|
|
'WiimoteNew.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
wiinewenv.Append(
|
|
|
|
LIBS = [ 'inputplugincommon', 'inputcommon', 'common' ],
|
|
|
|
)
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
2010-04-23 19:15:44 +00:00
|
|
|
wiinewenv['FRAMEWORKS'] = ['CoreFoundation', 'System', 'Cocoa', 'IOKit' ]
|
2010-04-13 06:09:45 +00:00
|
|
|
|
|
|
|
wiinewenv.SharedLibrary(env['plugin_dir']+name, files)
|