2009-01-15 08:48:15 +02:00
|
|
|
# -*- python -*-
|
2008-09-21 22:54:29 +03:00
|
|
|
|
2008-07-12 20:40:22 +03:00
|
|
|
Import('env')
|
|
|
|
|
2008-08-27 01:28:42 +03:00
|
|
|
files = [
|
|
|
|
"ABI.cpp",
|
2008-12-15 00:00:18 +02:00
|
|
|
"MsgHandler.cpp",
|
2008-08-27 01:28:42 +03:00
|
|
|
"ChunkFile.cpp",
|
2009-01-17 21:59:20 +02:00
|
|
|
"ConsoleWindow.cpp",
|
2009-02-22 14:44:13 +02:00
|
|
|
"ColorUtil.cpp",
|
2008-08-27 01:28:42 +03:00
|
|
|
"CPUDetect.cpp",
|
|
|
|
"DynamicLibrary.cpp",
|
|
|
|
"Hash.cpp",
|
|
|
|
"IniFile.cpp",
|
2008-11-01 19:44:27 +02:00
|
|
|
"FileSearch.cpp",
|
2008-08-27 01:28:42 +03:00
|
|
|
"FileUtil.cpp",
|
|
|
|
"MappedFile.cpp",
|
|
|
|
"MathUtil.cpp",
|
|
|
|
"MemArena.cpp",
|
|
|
|
"MemoryUtil.cpp",
|
|
|
|
"Plugin.cpp",
|
2009-02-01 16:21:08 +02:00
|
|
|
"PluginDSP.cpp",
|
|
|
|
"PluginWiimote.cpp",
|
|
|
|
"PluginVideo.cpp",
|
|
|
|
"PluginPAD.cpp",
|
2008-08-27 01:28:42 +03:00
|
|
|
"StringUtil.cpp",
|
|
|
|
"Thunk.cpp",
|
|
|
|
"Timer.cpp",
|
|
|
|
"Thread.cpp",
|
2008-10-09 11:51:57 +03:00
|
|
|
"WaveFile.cpp",
|
2008-08-27 01:28:42 +03:00
|
|
|
"x64Emitter.cpp",
|
|
|
|
"x64Analyzer.cpp",
|
|
|
|
]
|
|
|
|
|
2008-09-16 11:32:12 +03:00
|
|
|
env_common = env.Clone()
|
2008-09-21 01:06:22 +03:00
|
|
|
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
2008-07-12 20:40:22 +03:00
|
|
|
env_common.StaticLibrary("common", files)
|