2009-01-15 06:48:15 +00:00
|
|
|
# -*- 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
|
|
|
|
2008-08-26 22:28:42 +00:00
|
|
|
files = [
|
|
|
|
|
"ABI.cpp",
|
2009-06-28 12:15:31 +00:00
|
|
|
"BreakPoints.cpp",
|
2009-02-24 15:04:12 +00:00
|
|
|
"CDUtils.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"ChunkFile.cpp",
|
2009-02-22 12:44:13 +00:00
|
|
|
"ColorUtil.cpp",
|
2009-03-18 17:17:58 +00:00
|
|
|
"ConsoleListener.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"CPUDetect.cpp",
|
|
|
|
|
"DynamicLibrary.cpp",
|
2009-03-09 00:36:59 +00:00
|
|
|
"ExtendedTrace.cpp",
|
2008-11-01 17:44:27 +00:00
|
|
|
"FileSearch.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"FileUtil.cpp",
|
2009-03-09 00:36:59 +00:00
|
|
|
"Hash.cpp",
|
|
|
|
|
"IniFile.cpp",
|
2009-03-25 19:03:32 +00:00
|
|
|
"LogManager.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"MathUtil.cpp",
|
|
|
|
|
"MemArena.cpp",
|
|
|
|
|
"MemoryUtil.cpp",
|
2009-03-09 00:36:59 +00:00
|
|
|
"Misc.cpp",
|
|
|
|
|
"MsgHandler.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"Plugin.cpp",
|
2009-02-01 14:21:08 +00:00
|
|
|
"PluginDSP.cpp",
|
|
|
|
|
"PluginWiimote.cpp",
|
|
|
|
|
"PluginVideo.cpp",
|
|
|
|
|
"PluginPAD.cpp",
|
2009-04-22 17:03:46 +00:00
|
|
|
"SDCardUtil.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"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",
|
2008-08-26 22:28:42 +00:00
|
|
|
"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)
|