mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-29 09:30:20 +00:00
f4ba5b3589
windows scons will build if dirs = 'Externals/Bochs_disasm', 'Externals/LZO', 'Externals/WiiUseSrc/Src', #'Source/Core/Common/Src', #'Source/Core/Core/Src', # 'Source/Core/DiscIO/Src', # 'Source/Core/VideoCommon/Src', #'Source/Core/InputCommon/Src', 'Source/Plugins/Plugin_VideoOGL/Src', #'Source/Plugins/Plugin_DSP_HLE/Src', 'Source/Plugins/Plugin_DSP_LLE/Src', 'Source/Plugins/Plugin_PadSimple/Src', 'Source/Plugins/Plugin_PadSimpleEvnt/Src', # 'Source/Plugins/Plugin_nJoy_SDL/Src', #'Source/Plugins/Plugin_nJoy_Testing/Src', #'Source/Plugins/Plugin_Wiimote/Src', # 'Source/Core/DolphinWX/Src', 'Source/Core/DebuggerWX/Src', git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2627 8ced0084-cf51-0410-be5f-012b33b47a6e
23 lines
371 B
Python
23 lines
371 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
files = [
|
|
"dis_decode.cpp",
|
|
"dis_groups.cpp",
|
|
"resolve.cpp",
|
|
"syntax.cpp",
|
|
"PowerPCDisasm.cpp",
|
|
]
|
|
|
|
if sys.platform == 'win32':
|
|
files += [ "stdafx.cpp" ]
|
|
|
|
env_bochs = env.Clone(
|
|
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
|
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
|
)
|
|
|
|
env_bochs.StaticLibrary("bdisasm", files)
|