diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,6 +13,8 @@ if GetOption('release'): else: env.Append(CCFLAGS = ['-Wall', '-g']) -env.Program('audistd', Glob('*.cpp')) +env.ParseConfig('pkg-config --cflags --libs libmpg123') + +env.Program('audistd', Glob('*.cpp') + Glob('decoders/*.cpp')) # vim: syn=python |