diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2010-12-28 02:20:11 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2010-12-28 02:20:11 +0100 |
commit | 6b7c665baaf6023ee1cd935a953711fe65fff73b (patch) | |
tree | 910aebb83d20ddc203441b62d495a4d5552277b4 /SConstruct | |
parent | 1d05994fe1d9488193f01b47e92dcf11920c8f02 (diff) |
Added mpg123 decoder.
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 |