mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
PluginWiimoteNew now needs libwiiuse.
Treat external data (configuration file and device names) as 8-bit data. Character set mapping is not ideal, but at least such names can be used. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5824 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -16,13 +16,22 @@ files = [
|
||||
'WiimoteEmu/EmuSubroutines.cpp',
|
||||
'WiimoteEmu/Encryption.cpp',
|
||||
'WiimoteEmu/Speaker.cpp',
|
||||
'WiimoteReal/WiimoteReal.cpp',
|
||||
'WiimoteNew.cpp',
|
||||
'WiimoteConfigDiag.cpp',
|
||||
]
|
||||
|
||||
libs = [ 'common', 'inputcommon', 'inputuicommon', 'SDL' ]
|
||||
|
||||
cxxflags = [ ]
|
||||
|
||||
if wiinewenv['HAVE_WIIUSE']:
|
||||
cxxflags += [ '-DHAVE_WIIUSE' ]
|
||||
files += [ "WiimoteReal/WiimoteReal.cpp" ]
|
||||
libs += [ 'wiiuse' ]
|
||||
|
||||
wiinewenv.Append(
|
||||
LIBS = [ 'inputuicommon', 'inputcommon', 'common', 'SDL' ],
|
||||
CXXFLAGS = cxxflags,
|
||||
LIBS = libs
|
||||
)
|
||||
|
||||
wiinewenv.SharedLibrary(env['plugin_dir']+name, files)
|
||||
|
Reference in New Issue
Block a user