Files
dolphin/Source/Core/Common/Src/SConscript
T

60 lines
1.1 KiB
Python
Raw Normal View History

# -*- python -*-
2008-09-21 19:54:29 +00:00
2008-07-12 17:40:22 +00:00
Import('env')
import os
2009-03-09 00:36:59 +00:00
import sys
def createVersion(env, target, source):
from SconsTests import utils
utils.GenerateRevFile(env['flavor'], source[0].path, target[0].path)
env.Command('svnrev.h', 'svnrev_template.h',
[Delete('${TARGET.srcpath}'), createVersion])
2008-07-12 17:40:22 +00:00
files = [
"ABI.cpp",
"BreakPoints.cpp",
"CDUtils.cpp",
2009-02-22 12:44:13 +00:00
"ColorUtil.cpp",
"ConsoleListener.cpp",
"CPUDetect.cpp",
"DynamicLibrary.cpp",
2008-11-01 17:44:27 +00:00
"FileSearch.cpp",
"FileUtil.cpp",
2009-03-09 00:36:59 +00:00
"Hash.cpp",
"IniFile.cpp",
"LogManager.cpp",
"MathUtil.cpp",
"MemArena.cpp",
"MemoryUtil.cpp",
2009-03-09 00:36:59 +00:00
"Misc.cpp",
"MsgHandler.cpp",
"NandPaths.cpp",
"OpenCL.cpp",
"Plugin.cpp",
"PluginVideo.cpp",
"SDCardUtil.cpp",
"StringUtil.cpp",
2009-06-21 09:35:31 +00:00
"SymbolDB.cpp",
2009-09-14 06:44:11 +00:00
"SysConf.cpp",
2009-03-09 00:36:59 +00:00
"Thread.cpp",
"Thunk.cpp",
"Timer.cpp",
"Version.cpp",
"x64Emitter.cpp",
"x64Analyzer.cpp",
2011-01-09 16:36:19 +00:00
"Crypto/aes_cbc.cpp",
"Crypto/aes_core.cpp",
"Crypto/bn.cpp",
"Crypto/ec.cpp",
"Crypto/md5.cpp",
"Crypto/sha1.cpp",
]
2009-03-09 00:36:59 +00:00
if sys.platform == 'win32':
2010-06-03 18:49:35 +00:00
files += [ "ExtendedTrace.cpp" ]
2009-03-09 00:36:59 +00:00
files += [ "stdafx.cpp" ]
2010-06-10 14:18:21 +00:00
env.StaticLibrary(env['local_libs'] + "common", files)
env['CPPPATH'] += ['.']