mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 09:09:12 +01:00
02edf66b49
Turn wiiuse io_osx.m into Objective-C++. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6398 8ced0084-cf51-0410-be5f-012b33b47a6e
21 lines
367 B
Python
21 lines
367 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
files = [
|
|
"ir.cpp",
|
|
"wiiuse.cpp",
|
|
]
|
|
|
|
if sys.platform == 'darwin':
|
|
files += [ "io_osx.mm" ]
|
|
elif sys.platform == 'linux2' and env['HAVE_BLUEZ']:
|
|
files += [ "io_nix.cpp" ]
|
|
elif sys.platform == 'win32':
|
|
files += [ "io_win.cpp" ]
|
|
else:
|
|
files += [ "io_dummy.cpp" ]
|
|
|
|
env.StaticLibrary(env['local_libs'] + "wiiuse", files)
|