comparison trunk/SConstruct @ 320:c74acd46121b

- Added support for a very basic AIM-C file format
author tomwalters@google.com
date Thu, 27 May 2010 07:25:03 +0000
parents 30dde71d0230
children 0f54006e91ea
comparison
equal deleted inserted replaced
319:566a8543a6f1 320:c74acd46121b
45 'Modules/SNR/ModuleNoise.cc', 45 'Modules/SNR/ModuleNoise.cc',
46 'Modules/SSI/ModuleSSI.cc', 46 'Modules/SSI/ModuleSSI.cc',
47 'Modules/Profile/ModuleSlice.cc', 47 'Modules/Profile/ModuleSlice.cc',
48 'Modules/Profile/ModuleScaler.cc', 48 'Modules/Profile/ModuleScaler.cc',
49 'Modules/Features/ModuleGaussians.cc', 49 'Modules/Features/ModuleGaussians.cc',
50 'Modules/Output/FileOutputHTK.cc'] 50 'Modules/Output/FileOutputHTK.cc',
51 'Modules/Output/FileOutputAIMC.cc']
51 52
52 # File which contains main() 53 # File which contains main()
53 sources = common_sources + ['Main/AIMCopy_SSI_Features_v4_PZFC.cc'] 54 #sources = common_sources + ['Main/AIMCopy_SSI_Features_v4_PZFC.cc']
55 sources = common_sources + ['Main/aimc.cc']
54 56
55 # Test sources 57 # Test sources
56 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc'] 58 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc']
57 test_sources += common_sources 59 test_sources += common_sources
58 60
75 build_platform = env['PLATFORM'] 77 build_platform = env['PLATFORM']
76 target_platform = build_platform 78 target_platform = build_platform
77 79
78 # Build products location and executable name 80 # Build products location and executable name
79 build_dir = os.path.join('build', target_platform + '-release') 81 build_dir = os.path.join('build', target_platform + '-release')
80 target_executable = 'AIMCopy' 82 target_executable = 'aimc'
81 test_executable = 'aimc_tests' 83 test_executable = 'aimc_tests'
82 84
83 # Create build products directory if necessary 85 # Create build products directory if necessary
84 if not os.path.exists(build_dir): 86 if not os.path.exists(build_dir):
85 os.makedirs(build_dir) 87 os.makedirs(build_dir)