summaryrefslogtreecommitdiff
path: root/src/wx/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-24 23:05:11 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-24 23:05:11 +0100
commitd7a07b98f5b740921e9d7555740e05801ebfc1fc (patch)
tree0f873a25a25d0e030cf33a8e22e09944e3eded2d /src/wx/wscript
parent6acc7a2579c7842d8031aee29fb5fa1e015747fa (diff)
Tinkering.
Diffstat (limited to 'src/wx/wscript')
-rw-r--r--src/wx/wscript16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/wx/wscript b/src/wx/wscript
new file mode 100644
index 000000000..f8aa92896
--- /dev/null
+++ b/src/wx/wscript
@@ -0,0 +1,16 @@
+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 cxxprogram')
+ obj.name = 'dvdomatic-wx'
+ obj.includes = [ '..' ]
+ obj.export_includes = ['.']
+ obj.uselib = 'WXWIDGETS'
+ obj.use = 'dvdomatic'
+ obj.source = """
+ dvdomatic.cc
+ film_viewer.cc
+ film_editor.cc
+ """
+ obj.target = 'dvdomatic-wx'