comparison trunk/SConstruct @ 273:c26222c51fb7

- Fixed the python SWIG wrappers - Added stub test for the Gaussian features, and test data - Fixed build errors
author tomwalters
date Mon, 15 Feb 2010 20:37:26 +0000
parents e14c70d1b171
children ce2bab04f155
comparison
equal deleted inserted replaced
272:2147f317aedc 273:c26222c51fb7
91 print('Unsupported compiler: ' + compiler) 91 print('Unsupported compiler: ' + compiler)
92 Exit(1) 92 Exit(1)
93 93
94 # Sources common to every version 94 # Sources common to every version
95 common_sources = ['Support/Common.cc', 95 common_sources = ['Support/Common.cc',
96 'Support/SignalBank.cc',
96 'Support/Parameters.cc', 97 'Support/Parameters.cc',
97 'Support/Module.cc', 98 'Support/Module.cc',
98 'Modules/BMM/ModulePZFC.cc', 99 'Modules/BMM/ModulePZFC.cc',
99 'Modules/NAP/ModuleHCL.cc', 100 'Modules/NAP/ModuleHCL.cc',
100 'Modules/SAI/ModuleSAI.cc', 101 #'Modules/SAI/ModuleSAI.cc',
101 'Modules/Features/ModuleGaussians.cc'] 102 'Modules/Features/ModuleGaussians.cc']
102 103
103 if not target_platform == 'win32': 104 if not target_platform == 'win32':
104 # On windows, utf support is builtin for SimpleIni 105 # On windows, utf support is builtin for SimpleIni
105 # bit not on other platforms 106 # bit not on other platforms
106 common_sources += ['Support/ConvertUTF.c'] 107 common_sources += ['Support/ConvertUTF.c']
107 108
108 # Choose file which contains main() 109 # Choose file which contains main()
109 sources = common_sources + ['Main/aimc.cpp'] 110 sources = common_sources + ['Main/aimc.cc']
110 111
111 # Place the build products in the corect place 112 # Place the build products in the corect place
112 env.BuildDir('#' + build_dir, '#', duplicate = 0) 113 env.BuildDir('#' + build_dir, '#', duplicate = 0)
113 114
114 # Look for the sources in the correct place 115 # Look for the sources in the correct place