dolphin/Source/Core/Common/Src/SConscript
nakeee 9b1f0f9083 Added cdutils which suppose to scan for devices in a portable way (ripped from cdio)
Changed the Code to use it instead of DriveUtil code.
Please test the code


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2413 8ced0084-cf51-0410-be5f-012b33b47a6e
2009-02-24 15:04:12 +00:00

38 lines
650 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",
"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)