Remove film player, DVD ripping, alignment, screen configs; never finished and not...
[dcpomatic.git] / src / tools / wscript
1 def build(bld):
2     for t in ['makedcp', 'fixlengths', 'servomatic_cli']:
3         obj = bld(features = 'cxx cxxprogram')
4         obj.uselib = 'BOOST_THREAD'
5         obj.includes = ['..']
6         obj.use    = ['libdvdomatic']
7         obj.source = '%s.cc' % t
8         obj.target = t
9
10     if not bld.env.DISABLE_GUI:
11         for t in ['dvdomatic', 'servomatic_gui']:
12             obj = bld(features = 'cxx cxxprogram')
13             obj.includes = ['..']
14             obj.use    = ['libdvdomatic', 'libdvdomatic-wx']
15             obj.source = '%s.cc' % t
16             if bld.env.TARGET_WINDOWS:
17                 obj.source += ' ../../windows/dvdomatic.rc'
18             obj.target = t