diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-07 21:23:40 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-07 21:23:40 +0000 |
| commit | c09d415cac646bfd3067f359ca454dc5ea3679e5 (patch) | |
| tree | 5846cce350d1bf323bf9aaaed0bfaa9f6a69f0cd /src/tools/wscript | |
| parent | b4ec9ce787c63b27c96c404b1bd44eccd56ab16e (diff) | |
Allow static builds.
Diffstat (limited to 'src/tools/wscript')
| -rw-r--r-- | src/tools/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/wscript b/src/tools/wscript index 9c1ca7524..c8601ad1f 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' + obj.uselib = 'BOOST_THREAD DCP' obj.includes = ['..'] obj.use = ['libdvdomatic'] obj.source = '%s.cc' % t @@ -10,6 +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.includes = ['..'] obj.use = ['libdvdomatic', 'libdvdomatic-wx'] obj.source = '%s.cc' % t |
