Some vague sort of progress.
[dcpomatic.git] / src / wx2 / wscript
1 def configure(conf):
2     conf.check_cfg(package = '', path = 'wx-config', args = '--cppflags --cxxflags --libs', uselib_store = 'WXWIDGETS', mandatory = True)
3
4 def build(bld):
5     obj = bld(features = 'cxx cxxprogram')
6     obj.name   = 'dvdomatic-wx'
7     obj.includes = [ '..' ]
8     obj.export_includes = ['.']
9     obj.uselib = 'WXWIDGETS'
10     obj.use = 'dvdomatic'
11     obj.source = """
12                  dvdomatic.cc
13                  film_viewer.cc
14                  film_editor.cc
15                  """
16     obj.target = 'dvdomatic-wx'