diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-15 00:14:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-15 00:14:28 +0100 |
| commit | bb767c7e338414beee132af3e96829c1448e214b (patch) | |
| tree | bec2858dcc7225a9bcc2acd8170c25508f6df6cb /src/tools/wscript | |
| parent | 66c9be6bdb1361e5681e094a0c8170d268aa9518 (diff) | |
Move things round a bit.
Diffstat (limited to 'src/tools/wscript')
| -rw-r--r-- | src/tools/wscript | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tools/wscript b/src/tools/wscript new file mode 100644 index 000000000..919c98e3f --- /dev/null +++ b/src/tools/wscript @@ -0,0 +1,17 @@ +def build(bld): + for t in ['makedcp', 'servomatic', 'servomatictest', 'fixlengths']: + obj = bld(features = 'cxx cxxprogram') + obj.uselib = 'BOOST_THREAD' + obj.includes = ['..'] + obj.use = ['libdvdomatic'] + obj.source = '%s.cc' % t + obj.target = t + + if not bld.env.DISABLE_GUI: + for t in ['dvdomatic', 'playomatic', 'alignomatic']: + obj = bld(features = 'cxx cxxprogram') + obj.uselib = 'BOOST_THREAD GTKMM' + obj.includes = ['..'] + obj.use = ['libdvdomatic', 'libdvdomatic-gtk'] + obj.source = '%s.cc' % t + obj.target = t |
