mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Some scons updates,
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
This commit is contained in:
@ -1,31 +1,34 @@
|
||||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import sys
|
||||
|
||||
files = [
|
||||
"ABI.cpp",
|
||||
"MsgHandler.cpp",
|
||||
"CDUtils.cpp",
|
||||
"ChunkFile.cpp",
|
||||
"ConsoleWindow.cpp",
|
||||
"ColorUtil.cpp",
|
||||
"ConsoleWindow.cpp",
|
||||
"CPUDetect.cpp",
|
||||
"DynamicLibrary.cpp",
|
||||
"Hash.cpp",
|
||||
"IniFile.cpp",
|
||||
"ExtendedTrace.cpp",
|
||||
"FileSearch.cpp",
|
||||
"FileUtil.cpp",
|
||||
"Hash.cpp",
|
||||
"IniFile.cpp",
|
||||
"MappedFile.cpp",
|
||||
"MathUtil.cpp",
|
||||
"Misc.cpp",
|
||||
"MemArena.cpp",
|
||||
"MemoryUtil.cpp",
|
||||
"Misc.cpp",
|
||||
"MsgHandler.cpp",
|
||||
"Plugin.cpp",
|
||||
"PluginDSP.cpp",
|
||||
"PluginWiimote.cpp",
|
||||
"PluginVideo.cpp",
|
||||
"PluginPAD.cpp",
|
||||
"StringUtil.cpp",
|
||||
"Thread.cpp",
|
||||
"Thunk.cpp",
|
||||
"Timer.cpp",
|
||||
"Thread.cpp",
|
||||
@ -34,6 +37,9 @@ files = [
|
||||
"x64Analyzer.cpp",
|
||||
]
|
||||
|
||||
if sys.platform == 'win32':
|
||||
files += [ "stdafx.cpp" ]
|
||||
|
||||
env_common = env.Clone()
|
||||
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
env_common.StaticLibrary("common", files)
|
||||
|
Reference in New Issue
Block a user