summaryrefslogtreecommitdiff
path: root/src/wx2/wscript
blob: f8aa928965ea7e9311eaea102649890bece3c999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'