cross header.
authorCarl Hetherington <cth@carlh.net>
Sun, 22 Jul 2012 17:41:28 +0000 (18:41 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 22 Jul 2012 17:41:28 +0000 (18:41 +0100)
src/tools/makedcp.cc
src/tools/wscript

index 5684cac20934a8814cd41ba93b64aad071d87faf..772a12eca6dc1782aa99fcdf72cb67465e55c060 100644 (file)
@@ -35,6 +35,7 @@
 #include "util.h"
 #include "scaler.h"
 #include "version.h"
+#include "cross.h"
 
 using namespace std;
 using namespace boost;
index 95af35aa2c2f4bca584b0f879cc34e68304083e7..7e2891237f0894b636582ab5ce60cdd3ee7e1632 100644 (file)
@@ -8,7 +8,10 @@ def build(bld):
         obj.target = t
 
     if not bld.env.DISABLE_GUI:
-        for t in ['dvdomatic', 'alignomatic']:
+        p = ['dvdomatic', 'alignomatic']
+        if not bld.env.DISABLE_PLAYER:
+            p.append('playomatic')
+        for t in p:
             obj = bld(features = 'cxx cxxprogram')
             obj.uselib = 'BOOST_THREAD GTKMM'
             obj.includes = ['..']