Allow building without bluetooth support.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6273 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2010-10-12 23:39:16 +00:00
parent e81a10fb44
commit 739c9eb2df
6 changed files with 35 additions and 23 deletions

View File

@ -60,6 +60,7 @@ files = [
"HW/WiimoteEmu/EmuSubroutines.cpp",
"HW/WiimoteEmu/Encryption.cpp",
#"HW/WiimoteEmu/Speaker.cpp",
"HW/WiimoteReal/WiimoteReal.cpp",
"HW/GCPadEmu.cpp",
"HW/HW.cpp",
"HW/Memmap.cpp",
@ -150,7 +151,4 @@ elif sys.platform == 'darwin':
else:
files += [ "HW/BBA-TAP/TAP_Unix.cpp" ]
if env['HAVE_WIIUSE']:
files += [ 'HW/WiimoteReal/WiimoteReal.cpp' ]
env.StaticLibrary(env['local_libs'] + 'core', files, LIBS = libs)