summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index f29694c..75371ae 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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