diff trunk/SConstruct @ 296:fe5ce00a64f5

-Added AIMCopy, a replacement for HTK's HCopy -Set "Id" keyword on all .cc, .h and .py files -Added FileList class to aupport AIMCopy -Added a first go at a Module factory class. It's not to be used at the moment, but it will serve as a reminder to implement a proper factory soon.
author tomwalters
date Tue, 23 Feb 2010 12:47:01 +0000
parents aeac9e2151c6
children 09f6050303f8
line wrap: on
line diff
--- a/trunk/SConstruct	Mon Feb 22 18:28:02 2010 +0000
+++ b/trunk/SConstruct	Tue Feb 23 12:47:01 2010 +0000
@@ -31,9 +31,11 @@
 
 # Sources common to every version
 common_sources = ['Support/Common.cc',
+                  'Support/FileList.cc',
                   'Support/SignalBank.cc',
                   'Support/Parameters.cc',
                   'Support/Module.cc',
+                  'Support/ModuleFactory.cc',
                   'Modules/Input/ModuleFileInput.cc',
                   'Modules/BMM/ModuleGammatone.cc',
                   'Modules/BMM/ModulePZFC.cc',
@@ -47,7 +49,7 @@
                   'Modules/Output/FileOutputHTK.cc']
 
 # File which contains main()
-sources = common_sources + ['Main/aimc.cc']
+sources = common_sources + ['Main/AIMCopy.cc']
 
 # Test sources
 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc']