forked from dolphin-emu/dolphin
		
	git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7615 8ced0084-cf51-0410-be5f-012b33b47a6e 3.0: Removed SVNRevGen stuff; changed revision string to 3.0; Removed installer since it was vastly outdated; Bumped CMake major version to 3 git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7616 8ced0084-cf51-0410-be5f-012b33b47a6e 3.0: Add the languages which were chosen to be release-worthy. Uhm, unless I forgot something important, I guess we can declare 3.0 as officially released now and stuff. Cheers ;) git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7617 8ced0084-cf51-0410-be5f-012b33b47a6e 3.0: Fix SCons build git-svn-id: https://dolphin-emu.googlecode.com/svn/tags/3.0@7627 8ced0084-cf51-0410-be5f-012b33b47a6e
		
			
				
	
	
		
			50 lines
		
	
	
		
			985 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			985 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- python -*-
 | 
						|
 | 
						|
Import('env')
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
files = [
 | 
						|
	'Src/ABI.cpp',
 | 
						|
	'Src/BreakPoints.cpp',
 | 
						|
	'Src/CDUtils.cpp',
 | 
						|
	'Src/CPUDetect.cpp',
 | 
						|
	'Src/ColorUtil.cpp',
 | 
						|
	'Src/ConsoleListener.cpp',
 | 
						|
	'Src/Crypto/aes_cbc.cpp',
 | 
						|
	'Src/Crypto/aes_core.cpp',
 | 
						|
	'Src/Crypto/bn.cpp',
 | 
						|
	'Src/Crypto/ec.cpp',
 | 
						|
	'Src/Crypto/md5.cpp',
 | 
						|
	'Src/Crypto/sha1.cpp',
 | 
						|
	'Src/FileSearch.cpp',
 | 
						|
	'Src/FileUtil.cpp',
 | 
						|
	'Src/Hash.cpp',
 | 
						|
	'Src/IniFile.cpp',
 | 
						|
	'Src/LogManager.cpp',
 | 
						|
	'Src/MathUtil.cpp',
 | 
						|
	'Src/MemArena.cpp',
 | 
						|
	'Src/MemoryUtil.cpp',
 | 
						|
	'Src/Misc.cpp',
 | 
						|
	'Src/MsgHandler.cpp',
 | 
						|
	'Src/NandPaths.cpp',
 | 
						|
	'Src/SDCardUtil.cpp',
 | 
						|
	'Src/StringUtil.cpp',
 | 
						|
	'Src/SymbolDB.cpp',
 | 
						|
	'Src/SysConf.cpp',
 | 
						|
	'Src/Thread.cpp',
 | 
						|
	'Src/Thunk.cpp',
 | 
						|
	'Src/Timer.cpp',
 | 
						|
	'Src/Version.cpp',
 | 
						|
	'Src/VideoBackendBase.cpp',
 | 
						|
	'Src/x64Analyzer.cpp',
 | 
						|
	'Src/x64Emitter.cpp',
 | 
						|
	]
 | 
						|
 | 
						|
if sys.platform == 'win32':
 | 
						|
	files += ['Src/ExtendedTrace.cpp']
 | 
						|
	files += ['Src/stdafx.cpp']
 | 
						|
 | 
						|
env['CPPPATH'] += ['Src']
 | 
						|
env['LIBS'] += env.StaticLibrary('common', files)
 |