40 lines
663 B
Python
40 lines
663 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
"ABI.cpp",
|
|
"MsgHandler.cpp",
|
|
"CDUtils.cpp",
|
|
"ChunkFile.cpp",
|
|
"ConsoleWindow.cpp",
|
|
"ColorUtil.cpp",
|
|
"CPUDetect.cpp",
|
|
"DynamicLibrary.cpp",
|
|
"Hash.cpp",
|
|
"IniFile.cpp",
|
|
"FileSearch.cpp",
|
|
"FileUtil.cpp",
|
|
"MappedFile.cpp",
|
|
"MathUtil.cpp",
|
|
"Misc.cpp",
|
|
"MemArena.cpp",
|
|
"MemoryUtil.cpp",
|
|
"Plugin.cpp",
|
|
"PluginDSP.cpp",
|
|
"PluginWiimote.cpp",
|
|
"PluginVideo.cpp",
|
|
"PluginPAD.cpp",
|
|
"StringUtil.cpp",
|
|
"Thunk.cpp",
|
|
"Timer.cpp",
|
|
"Thread.cpp",
|
|
"WaveFile.cpp",
|
|
"x64Emitter.cpp",
|
|
"x64Analyzer.cpp",
|
|
]
|
|
|
|
env_common = env.Clone()
|
|
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
|
env_common.StaticLibrary("common", files)
|