mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-21 17:59:50 +00:00
wiimote for osx WIP
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3109 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
63f84a491a
commit
3917941ae1
8 changed files with 222 additions and 40 deletions
14
Externals/WiiUseSrc/Src/SConscript
vendored
14
Externals/WiiUseSrc/Src/SConscript
vendored
|
@ -24,10 +24,16 @@ if env['HAVE_BLUEZ']:
|
|||
if sys.platform == 'darwin':
|
||||
files += [ "io_osx.c", ]
|
||||
|
||||
env_wiiuse = env.Clone(
|
||||
CCFLAGS = env.filterWarnings(env['CCFLAGS']) + ' -fvisibility=default',
|
||||
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
||||
)
|
||||
if sys.platform == 'darwin':
|
||||
env_wiiuse = env.Clone(
|
||||
CCFLAGS = env.filterWarnings(env['CCFLAGS']) + ' -fvisibility=default -x objective-c++',
|
||||
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']) + ' -x objective-c++',
|
||||
)
|
||||
else:
|
||||
env_wiiuse = env.Clone(
|
||||
CCFLAGS = env.filterWarnings(env['CCFLAGS']) + ' -fvisibility=default',
|
||||
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
||||
)
|
||||
|
||||
libs = [
|
||||
'm',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue