diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2011-01-06 06:13:12 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2011-01-06 06:13:12 +0100 |
commit | 822ae13835c2f6443d5b4fface6f3f547bcfcb11 (patch) | |
tree | 2a9c2ec01f90b8dcb26b2d873fd23443ed8d4a14 /SConstruct | |
parent | 6f2fefdd9ff5f8561b3538efb5eb0765a9b4a141 (diff) |
Implemented rudimentary ffmpeg-based decoder.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ AddOption('--release', action = 'store_true') env = Environment(CPPPATH = ['.'], CCFLAGS = ['-pthread'], LINKFLAGS = ['-pthread']) if env['PLATFORM'] == 'darwin': - env.Append(LIBS = ['boost_system', 'boost_filesystem', 'boost_regex', 'boost_thread', 'boost_program_options', 'mp3lame', 'soci_core']) + env.Append(LIBS = ['boost_system', 'boost_filesystem', 'boost_regex', 'boost_thread', 'boost_program_options', 'mp3lame', 'avformat', 'avcodec', 'soci_core']) else: conf = Configure(env) for lib in ['boost_system-mt', 'boost_filesystem-mt', 'boost_regex-mt','boost_thread-mt', 'boost_program_options-mt', 'mp3lame']: |