Various work on certificate handling for screens; need XML config here, now.
[dcpomatic.git] / src / wx / wscript
index d425c3e05a31ead28d652efc8d8c2bfea724a0e6..82d9d3738a7cb4282c5637033f64e35b9412004f 100644 (file)
@@ -2,7 +2,11 @@ def configure(conf):
     conf.check_cfg(package = '', path = 'wx-config', args = '--cppflags --cxxflags --libs', uselib_store = 'WXWIDGETS', mandatory = True)
 
 def build(bld):
-    obj = bld(features = 'cxx cxxshlib')
+    if bld.env.STATIC:
+        obj = bld(features = 'cxx cxxstlib')
+    else:
+        obj = bld(features = 'cxx cxxshlib')
+
     obj.name   = 'libdvdomatic-wx'
     obj.includes = [ '..' ]
     obj.export_includes = ['.']
@@ -19,7 +23,10 @@ def build(bld):
                  gain_calculator_dialog.cc
                  job_manager_view.cc
                  job_wrapper.cc
+                 kdm_dialog.cc
+                 cinema_dialog.cc
                  new_film_dialog.cc
+                 screen_dialog.cc
                  properties_dialog.cc
                  server_dialog.cc
                  wx_util.cc