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',
|
2010-04-24 00:44:10 +00:00
|
|
|
'WiimoteEmu/Attachment/Drums.cpp',
|
|
|
|
'WiimoteEmu/Attachment/Guitar.cpp',
|
2010-04-13 06:09:45 +00:00
|
|
|
'WiimoteEmu/EmuSubroutines.cpp',
|
|
|
|
'WiimoteEmu/Encryption.cpp',
|
2010-04-29 18:51:04 +00:00
|
|
|
'WiimoteEmu/Speaker.cpp',
|
2010-04-13 06:09:45 +00:00
|
|
|
'WiimoteNew.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
wiinewenv.Append(
|
2010-06-16 00:07:52 +00:00
|
|
|
LIBS = [ 'inputuicommon', 'inputcommon', 'common', 'SDL' ],
|
2010-04-13 06:09:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
wiinewenv.SharedLibrary(env['plugin_dir']+name, files)
|