Mercurial > hg > aimc
diff SConstruct @ 23:491b1b1d1dc5
-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 | d386805133f1 |
children | f7321fcaac7e |
line wrap: on
line diff
--- a/SConstruct Mon Feb 22 18:17:14 2010 +0000 +++ b/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']