summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2012-03-25 12:55:02 -0700
committerShawn Hoffman <godisgovernment@gmail.com>2012-03-25 12:55:02 -0700
commit56b1373baff6f152e51fda96d8d7c0296bff2a70 (patch)
treec79d03bdd1adc36340bc7179297a579de8bdd7e6 /Source/Core/Common
parente25d29bf679f277f46802d22169cc3b50397b623 (diff)
Remove scons-related files
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/SConscript60
-rw-r--r--Source/Core/Common/Src/Common.h4
2 files changed, 0 insertions, 64 deletions
diff --git a/Source/Core/Common/SConscript b/Source/Core/Common/SConscript
deleted file mode 100644
index f26dfc044c..0000000000
--- a/Source/Core/Common/SConscript
+++ /dev/null
@@ -1,60 +0,0 @@
-# -*- python -*-
-
-Import('env')
-import os
-import sys
-
-out_contents =\
- '#define SCM_REV_STR "' + env['gitrev'] + '"\n' +\
- '#define SCM_DESC_STR "' + env['gitdesc'] + '"\n' +\
- '#define SCM_BRANCH_STR "' + env['gitbranch'] + '"\n' +\
- '#define SCM_IS_MASTER ' + ('1' if env['gitbranch'] == 'master' else '0') + '\n\n'
-
-Execute(Delete('Src/scmrev.h'))
-outfile = open('Src/scmrev.h', 'w')
-outfile.write(out_contents)
-outfile.close()
-
-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)
diff --git a/Source/Core/Common/Src/Common.h b/Source/Core/Common/Src/Common.h
index db889f7ddf..a6beb79ef2 100644
--- a/Source/Core/Common/Src/Common.h
+++ b/Source/Core/Common/Src/Common.h
@@ -103,10 +103,6 @@ private:
//CrtDebugBreak breakAt(614);
#endif // end DEBUG/FAST
-#elif defined HAVE_CONFIG_H
-#include "config.h" // SCons autoconfiguration defines
-#endif
-
// Windows compatibility
#ifndef _WIN32
#include <limits.h>