mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
wiiusesrc: change back to .c files, in order to more easily diff with "official" wiiuse
wiiusesrc: enable building with windows/msvc. In order to build you need to install WDK, then build. wiiuse.vcproj uses WDK exclusively, and ignores other include/lib paths. Change the paths in wiiuse.vcproj if your version of WDK differs. wiiuse: update compiled windows libs git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4295 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
20
Externals/WiiUseSrc/Src/SConscript
vendored
20
Externals/WiiUseSrc/Src/SConscript
vendored
@ -8,19 +8,19 @@ if not (env['HAVE_BLUEZ'] or sys.platform == 'darwin'):
|
||||
Return()
|
||||
|
||||
files = [
|
||||
"classic.cpp",
|
||||
"dynamics.cpp",
|
||||
"events.cpp",
|
||||
"io.cpp",
|
||||
"ir.cpp",
|
||||
"nunchuk.cpp",
|
||||
"guitar_hero_3.cpp",
|
||||
"wiiboard.cpp",
|
||||
"wiiuse.cpp",
|
||||
"classic.c",
|
||||
"dynamics.c",
|
||||
"events.c",
|
||||
"io.c",
|
||||
"ir.c",
|
||||
"nunchuk.c",
|
||||
"guitar_hero_3.c",
|
||||
"wiiboard.c",
|
||||
"wiiuse.c",
|
||||
]
|
||||
|
||||
if env['HAVE_BLUEZ']:
|
||||
files += [ "io_nix.cpp", ]
|
||||
files += [ "io_nix.c", ]
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
files += [ "io_osx.m", ]
|
||||
|
Reference in New Issue
Block a user