diff SConstruct @ 46:c8024714e13e

- Added support for a very basic AIM-C file format
author tomwalters@google.com
date Thu, 27 May 2010 07:25:03 +0000
parents c5f5e9569863
children 0cd20c748308
line wrap: on
line diff
--- a/SConstruct	Tue Mar 30 22:06:24 2010 +0000
+++ b/SConstruct	Thu May 27 07:25:03 2010 +0000
@@ -47,10 +47,12 @@
                   'Modules/Profile/ModuleSlice.cc',
                   'Modules/Profile/ModuleScaler.cc',
                   'Modules/Features/ModuleGaussians.cc',
-                  'Modules/Output/FileOutputHTK.cc']
+                  'Modules/Output/FileOutputHTK.cc',
+                  'Modules/Output/FileOutputAIMC.cc']
 
 # File which contains main()
-sources = common_sources + ['Main/AIMCopy_SSI_Features_v4_PZFC.cc']
+#sources = common_sources + ['Main/AIMCopy_SSI_Features_v4_PZFC.cc']
+sources = common_sources + ['Main/aimc.cc']
 
 # Test sources
 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc']
@@ -77,7 +79,7 @@
 
 # Build products location and executable name
 build_dir = os.path.join('build', target_platform + '-release')
-target_executable = 'AIMCopy'
+target_executable = 'aimc'
 test_executable = 'aimc_tests'
 
 # Create build products directory if necessary