diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ conf = Configure(env) conf.CheckLib('boost_system') conf.CheckLib('boost_filesystem') conf.CheckLib('boost_regex') +conf.CheckLib('mp3lame') env = conf.Finish() if GetOption('release'): @@ -15,6 +16,6 @@ else: env.ParseConfig('pkg-config --cflags --libs libmpg123') -env.Program('audistd', Glob('*.cpp') + Glob('decoders/*.cpp')) +env.Program('audistd', Glob('*.cpp') + Glob('decoders/*.cpp') + Glob('encoders/*.cpp')) # vim: syn=python |