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')
|
|
|
|
|
2008-08-26 22:28:42 +00:00
|
|
|
files = [
|
|
|
|
"ABI.cpp",
|
2008-12-14 22:00:18 +00:00
|
|
|
"MsgHandler.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"ChunkFile.cpp",
|
2009-01-17 19:59:20 +00:00
|
|
|
"ConsoleWindow.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"CPUDetect.cpp",
|
|
|
|
"DynamicLibrary.cpp",
|
|
|
|
"Hash.cpp",
|
|
|
|
"IniFile.cpp",
|
2008-11-01 17:44:27 +00:00
|
|
|
"FileSearch.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"FileUtil.cpp",
|
|
|
|
"MappedFile.cpp",
|
|
|
|
"MathUtil.cpp",
|
|
|
|
"MemArena.cpp",
|
|
|
|
"MemoryUtil.cpp",
|
|
|
|
"Plugin.cpp",
|
2009-01-15 06:48:15 +00:00
|
|
|
"PluginDSP.cpp",
|
|
|
|
"PluginWiimote.cpp",
|
|
|
|
"PluginVideo.cpp",
|
|
|
|
"PluginPAD.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"StringUtil.cpp",
|
|
|
|
"TestFramework.cpp",
|
|
|
|
"Thunk.cpp",
|
|
|
|
"Timer.cpp",
|
|
|
|
"Thread.cpp",
|
2008-10-09 08:51:57 +00:00
|
|
|
"WaveFile.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
"x64Emitter.cpp",
|
|
|
|
"x64Analyzer.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' ])
|
2008-07-12 17:40:22 +00:00
|
|
|
env_common.StaticLibrary("common", files)
|