annotate trunk/SConstruct @ 268:e14c70d1b171

- Initial add of support code and modules. Not everything is working yet.
author tomwalters
date Fri, 12 Feb 2010 12:31:23 +0000
parents
children c26222c51fb7
rev   line source
tomwalters@268 1 # Copyright 2006-2010, Willem van Engen, Thomas Walters
tomwalters@268 2 #
tomwalters@268 3 # AIM-C: A C++ implementation of the Auditory Image Model
tomwalters@268 4 # http://www.acousticscale.org/AIMC
tomwalters@268 5 #
tomwalters@268 6 # This program is free software: you can redistribute it and/or modify
tomwalters@268 7 # it under the terms of the GNU General Public License as published by
tomwalters@268 8 # the Free Software Foundation, either version 3 of the License, or
tomwalters@268 9 # (at your option) any later version.
tomwalters@268 10 #
tomwalters@268 11 # This program is distributed in the hope that it will be useful,
tomwalters@268 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
tomwalters@268 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
tomwalters@268 14 # GNU General Public License for more details.
tomwalters@268 15 #
tomwalters@268 16 # You should have received a copy of the GNU General Public License
tomwalters@268 17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
tomwalters@268 18
tomwalters@268 19 ## @author Thomas Walters <tom@acousticscale.org>
tomwalters@268 20 # @author Willem van Engen <cnbh@willem.engen.nl>
tomwalters@268 21 # @date created 2010/02/02
tomwalters@268 22 # @version \$Id$
tomwalters@268 23
tomwalters@268 24 """@package SConstruct
tomwalters@268 25 SConstruct file for the aimc project
tomwalters@268 26
tomwalters@268 27 """
tomwalters@268 28
tomwalters@268 29 import os
tomwalters@268 30 import shutil
tomwalters@268 31
tomwalters@268 32 # Define the command-line options for running scons
tomwalters@268 33 options = Variables()
tomwalters@268 34 options.Add(BoolVariable('mingw',
tomwalters@268 35 'Compile on Windows using mingw rather than msvc',
tomwalters@268 36 False))
tomwalters@268 37
tomwalters@268 38 # Environment variables
tomwalters@268 39 env = Environment(options = options, ENV = os.environ)
tomwalters@268 40 if env['mingw']:
tomwalters@268 41 # SCons Defaults to MSVC if installed on Windows.
tomwalters@268 42 env = Environment(options = opts, ENV = os.environ, tools = ['mingw'])
tomwalters@268 43
tomwalters@268 44 # Platform
tomwalters@268 45 build_platform = env['PLATFORM']
tomwalters@268 46 target_platform = build_platform
tomwalters@268 47
tomwalters@268 48 # Build products location and executable name
tomwalters@268 49 build_dir = os.path.join('build', target_platform + '-release')
tomwalters@268 50 target_executable = 'aimc'
tomwalters@268 51
tomwalters@268 52 # Create build products directory if necessary
tomwalters@268 53 if not os.path.exists(build_dir):
tomwalters@268 54 os.makedirs(build_dir)
tomwalters@268 55 env.SConsignFile(os.path.join(build_dir,'.sconsign'))
tomwalters@268 56
tomwalters@268 57 # Set any platform-specific environment variables and options
tomwalters@268 58 if target_platform == 'win32':
tomwalters@268 59 env.AppendUnique(CPPDEFINES = ['_WINDOWS', 'WIN32',
tomwalters@268 60 'WINVER=0x0400', '_CONSOLE'])
tomwalters@268 61 elif target_platform == 'darwin':
tomwalters@268 62 env.AppendUnique(CPPDEFINES = ['_MACOSX'])
tomwalters@268 63
tomwalters@268 64 # Compiler selection based on platform
tomwalters@268 65 # compiler can be one of: gcc msvc
tomwalters@268 66 compiler = 'gcc'
tomwalters@268 67 if (build_platform == 'win32'
tomwalters@268 68 and target_platform == 'win32'
tomwalters@268 69 and not env['mingw']):
tomwalters@268 70 compiler = 'msvc'
tomwalters@268 71
tomwalters@268 72 # Compiler-specific options:
tomwalters@268 73 # Microsoft visual studio
tomwalters@268 74 if compiler == 'msvc':
tomwalters@268 75 env.AppendUnique(CPPFLAGS = ['/arch:SSE2', '/nologo', '/W3', '/EHsc'])
tomwalters@268 76 env.AppendUnique(CPPDEFINES = ['_CRT_SECURE_NO_DEPRECATE',
tomwalters@268 77 '_RINT_REQUIRED'])
tomwalters@268 78 env.AppendUnique(CPPFLAGS = ['/Ox'])
tomwalters@268 79 env.AppendUnique(CPPDEFINES = ['NDEBUG', '_ATL_MIN_CRT'])
tomwalters@268 80
tomwalters@268 81 # GNU compiler collection
tomwalters@268 82 elif compiler == 'gcc':
tomwalters@268 83 env['STRIP'] = 'strip'
tomwalters@268 84 env.AppendUnique(CPPFLAGS = ['-Wall'])
tomwalters@268 85 env.AppendUnique(CPPFLAGS = ['-O3', '-fomit-frame-pointer'])
tomwalters@268 86 if env['mingw']:
tomwalters@268 87 if not env['PLATFORM'] == 'win32':
tomwalters@268 88 print('Cross-compilation for Windows is not supported')
tomwalters@268 89 Exit(1)
tomwalters@268 90 else:
tomwalters@268 91 print('Unsupported compiler: ' + compiler)
tomwalters@268 92 Exit(1)
tomwalters@268 93
tomwalters@268 94 # Sources common to every version
tomwalters@268 95 common_sources = ['Support/Common.cc',
tomwalters@268 96 'Support/Parameters.cc',
tomwalters@268 97 'Support/Module.cc',
tomwalters@268 98 'Modules/BMM/ModulePZFC.cc',
tomwalters@268 99 'Modules/NAP/ModuleHCL.cc',
tomwalters@268 100 'Modules/SAI/ModuleSAI.cc',
tomwalters@268 101 'Modules/Features/ModuleGaussians.cc']
tomwalters@268 102
tomwalters@268 103 if not target_platform == 'win32':
tomwalters@268 104 # On windows, utf support is builtin for SimpleIni
tomwalters@268 105 # bit not on other platforms
tomwalters@268 106 common_sources += ['Support/ConvertUTF.c']
tomwalters@268 107
tomwalters@268 108 # Choose file which contains main()
tomwalters@268 109 sources = common_sources + ['Main/aimc.cpp']
tomwalters@268 110
tomwalters@268 111 # Place the build products in the corect place
tomwalters@268 112 env.BuildDir('#' + build_dir, '#', duplicate = 0)
tomwalters@268 113
tomwalters@268 114 # Look for the sources in the correct place
tomwalters@268 115 env.Append(CPPPATH = '#src')
tomwalters@268 116
tomwalters@268 117 # Dependencies
tomwalters@268 118 deplibs = ''
tomwalters@268 119 env.AppendUnique(LIBS = deplibs)
tomwalters@268 120
tomwalters@268 121 # Set up the builder to build the program
tomwalters@268 122 program = env.Program(target = os.path.join(build_dir, target_executable),
tomwalters@268 123 source = map(lambda x: '#' + build_dir + '/src/' + x,
tomwalters@268 124 sources))
tomwalters@268 125 env.Default(program)