diff options
Diffstat (limited to 'Source/Core/Common/Src/SConscript')
| -rw-r--r-- | Source/Core/Common/Src/SConscript | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/SConscript b/Source/Core/Common/Src/SConscript new file mode 100644 index 0000000000..e7d9333355 --- /dev/null +++ b/Source/Core/Common/Src/SConscript @@ -0,0 +1,25 @@ +Import('env') + +files = ["Common.cpp", + "CPUDetect.cpp", + "DynamicLibrary.cpp", + "Hash.cpp", + "HTTP.cpp", + "IniFile.cpp", + "Logging.cpp", + "MappedFile.cpp", + "MathUtil.cpp", + "MemArena.cpp", + "MemoryUtil.cpp", + "Plugin.cpp", + "PortableSockets.cpp", + "StringUtil.cpp", + "TestFramework.cpp", + "Timer.cpp", + "Thread.cpp", + "x64Emitter.cpp", + "x64Analyzer.cpp", + ] + +env_common = env.Copy(CXXFLAGS = " -fPIC ") +env_common.StaticLibrary("common", files) |
