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