Files
dolphin/Source/Core/Common/Src/SConscript
T

49 lines
844 B
Python
Raw Normal View History

# -*- python -*-
2008-09-21 19:54:29 +00:00
2008-07-12 17:40:22 +00:00
Import('env')
2009-03-09 00:36:59 +00:00
import sys
2008-07-12 17:40:22 +00:00
files = [
"ABI.cpp",
"BreakPoints.cpp",
"CDUtils.cpp",
"ChunkFile.cpp",
2009-02-22 12:44:13 +00:00
"ColorUtil.cpp",
"ConsoleListener.cpp",
"CPUDetect.cpp",
"DynamicLibrary.cpp",
2009-03-09 00:36:59 +00:00
"ExtendedTrace.cpp",
2008-11-01 17:44:27 +00:00
"FileSearch.cpp",
"FileUtil.cpp",
2009-03-09 00:36:59 +00:00
"Hash.cpp",
"IniFile.cpp",
"LogManager.cpp",
"MathUtil.cpp",
"MemArena.cpp",
"MemoryUtil.cpp",
2009-03-09 00:36:59 +00:00
"Misc.cpp",
"MsgHandler.cpp",
"Plugin.cpp",
"PluginDSP.cpp",
"PluginWiimote.cpp",
"PluginVideo.cpp",
"PluginPAD.cpp",
"SDCardUtil.cpp",
"StringUtil.cpp",
2009-06-21 09:35:31 +00:00
"SymbolDB.cpp",
2009-09-14 06:44:11 +00:00
"SysConf.cpp",
2009-03-09 00:36:59 +00:00
"Thread.cpp",
"Thunk.cpp",
"Timer.cpp",
"Thread.cpp",
"x64Emitter.cpp",
"x64Analyzer.cpp",
]
2009-03-09 00:36:59 +00:00
if sys.platform == 'win32':
files += [ "stdafx.cpp" ]
2008-09-16 08:32:12 +00:00
env_common = env.Clone()
2008-09-20 22:06:22 +00:00
env_common.Append(CXXFLAGS = [ '-fPIC' ])
2009-04-12 21:30:22 +00:00
env_common.StaticLibrary(env['local_libs'] + "common", files)