mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-16 02:59:11 +01:00
aa998896ac
can go to the log window like with other subsystems. Remove a Wiiuse dependency on libm from when it was a shared library. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5885 8ced0084-cf51-0410-be5f-012b33b47a6e
25 lines
423 B
Python
25 lines
423 B
Python
# -*- python -*-
|
|
|
|
import sys
|
|
Import('env')
|
|
|
|
if (sys.platform == 'linux2' and env['HAVE_BLUEZ'] != 1):
|
|
env['HAVE_WIIUSE'] = 0
|
|
Return()
|
|
|
|
files = [
|
|
"io.c",
|
|
"ir.c",
|
|
"wiiuse.c",
|
|
]
|
|
|
|
if sys.platform == 'linux2' and env['HAVE_BLUEZ']:
|
|
files += [ "io_nix.c", ]
|
|
|
|
if sys.platform == 'darwin':
|
|
files += [ "io_osx.m", ]
|
|
|
|
env.StaticLibrary(env['local_libs'] + "wiiuse", files)
|
|
|
|
env['HAVE_WIIUSE'] = 1
|