comparison SConstruct @ 75:799e7d0e5cdc

- AWS fixen
author tomwalters
date Wed, 11 Aug 2010 17:29:51 +0000
parents e914b02b31b0
children 37b084ec9770
comparison
equal deleted inserted replaced
74:0b5498dca66a 75:799e7d0e5cdc
54 # List of currently incative source files which we may want to add back in 54 # List of currently incative source files which we may want to add back in
55 sources_disabled = ['Modules/SNR/ModuleNoise.cc', 55 sources_disabled = ['Modules/SNR/ModuleNoise.cc',
56 'Modules/Features/ModuleGaussians.cc'] 56 'Modules/Features/ModuleGaussians.cc']
57 57
58 # File which contains main() 58 # File which contains main()
59 sources = common_sources + ['Main/AIMCopy_SSI_Features_v3.cc']
59 #sources = common_sources + ['Main/AIMCopy_SSI_Features_v4_PZFC.cc'] 60 #sources = common_sources + ['Main/AIMCopy_SSI_Features_v4_PZFC.cc']
60 #sources = common_sources + ['Main/AIMCopy_SSI_Features_v5_smooth_nap.cc'] 61 #sources = common_sources + ['Main/AIMCopy_SSI_Features_v5_smooth_nap.cc']
61 sources = common_sources + ['Main/aimc.cc'] 62 #sources = common_sources + ['Main/aimc.cc']
62 63
63 # Test sources 64 # Test sources
64 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc'] 65 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc']
65 test_sources += common_sources 66 test_sources += common_sources
66 67
83 build_platform = env['PLATFORM'] 84 build_platform = env['PLATFORM']
84 target_platform = build_platform 85 target_platform = build_platform
85 86
86 # Build products location and executable name 87 # Build products location and executable name
87 build_dir = os.path.join('build', target_platform + '-release') 88 build_dir = os.path.join('build', target_platform + '-release')
88 target_executable = 'aimc' 89 #target_executable = 'aimc'
89 #target_executable = 'AIMCopy' 90 target_executable = 'AIMCopy'
90 test_executable = 'aimc_tests' 91 test_executable = 'aimc_tests'
91 92
92 # Create build products directory if necessary 93 # Create build products directory if necessary
93 if not os.path.exists(build_dir): 94 if not os.path.exists(build_dir):
94 os.makedirs(build_dir) 95 os.makedirs(build_dir)