diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-07-12 17:40:22 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-07-12 17:40:22 +0000 |
| commit | 775dc8a9c0c83f7a2f776e97f5b90385c759535a (patch) | |
| tree | 305bc72e0917f9dd52da3de6b3c81185cd18aaed /Source/Core/Common/Src/SConscript | |
| parent | a3be5d89ae21b1c158266c61e312c2b7969c9082 (diff) | |
Initial megacommit.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4 8ced0084-cf51-0410-be5f-012b33b47a6e
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) |
