2008-07-12 17:40:22 +00:00
|
|
|
Import('env')
|
|
|
|
|
2008-07-31 20:22:35 +00:00
|
|
|
files = ["ABI.cpp",
|
|
|
|
"Common.cpp",
|
2008-08-21 23:28:07 +00:00
|
|
|
"ChunkFile.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
"CPUDetect.cpp",
|
|
|
|
"DynamicLibrary.cpp",
|
|
|
|
"Hash.cpp",
|
|
|
|
"HTTP.cpp",
|
|
|
|
"IniFile.cpp",
|
|
|
|
"Logging.cpp",
|
2008-07-20 11:02:41 +00:00
|
|
|
"FileUtil.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
"MappedFile.cpp",
|
|
|
|
"MathUtil.cpp",
|
|
|
|
"MemArena.cpp",
|
|
|
|
"MemoryUtil.cpp",
|
|
|
|
"Plugin.cpp",
|
|
|
|
"PortableSockets.cpp",
|
|
|
|
"StringUtil.cpp",
|
|
|
|
"TestFramework.cpp",
|
2008-08-12 20:05:45 +00:00
|
|
|
"Thunk.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
"Timer.cpp",
|
|
|
|
"Thread.cpp",
|
|
|
|
"x64Emitter.cpp",
|
|
|
|
"x64Analyzer.cpp",
|
|
|
|
]
|
2008-07-23 08:49:58 +00:00
|
|
|
|
|
|
|
env_common = env.Copy()
|
2008-08-26 21:02:23 +00:00
|
|
|
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
2008-07-12 17:40:22 +00:00
|
|
|
env_common.StaticLibrary("common", files)
|