diff options
| author | Carl Hetherington <carl@ubuntu-12-10-32.lan> | 2012-12-08 00:04:51 +0000 |
|---|---|---|
| committer | Carl Hetherington <carl@ubuntu-12-10-32.lan> | 2012-12-08 00:04:51 +0000 |
| commit | 208f804424cca01fde7def1d11afe295d564603c (patch) | |
| tree | 61acad7cabaab62efa600d2bc42158c2d297c73d /src/tools/wscript | |
| parent | c09d415cac646bfd3067f359ca454dc5ea3679e5 (diff) | |
Fixes to static linking.
Diffstat (limited to 'src/tools/wscript')
| -rw-r--r-- | src/tools/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wscript b/src/tools/wscript index c8601ad1f..58dfa9544 100644 --- a/src/tools/wscript +++ b/src/tools/wscript @@ -1,7 +1,7 @@ def build(bld): for t in ['makedcp', 'fixlengths', 'servomatic_cli']: obj = bld(features = 'cxx cxxprogram') - obj.uselib = 'BOOST_THREAD DCP' + obj.uselib = 'BOOST_THREAD OPENJPEG DCP AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC' obj.includes = ['..'] obj.use = ['libdvdomatic'] obj.source = '%s.cc' % t @@ -10,7 +10,7 @@ def build(bld): if not bld.env.DISABLE_GUI: for t in ['dvdomatic', 'servomatic_gui']: obj = bld(features = 'cxx cxxprogram') - obj.uselib = 'DCP' + obj.uselib = 'DCP OPENJPEG AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC' obj.includes = ['..'] obj.use = ['libdvdomatic', 'libdvdomatic-wx'] obj.source = '%s.cc' % t |
