Merge branch 'master' of ssh://houllier/home/carl/git/dvdomatic
[dcpomatic.git] / src / wx / wscript
1 import os
2 import glob
3 from waflib import Logs
4 import i18n
5
6 sources = """
7           about_dialog.cc
8           audio_dialog.cc
9           audio_plot.cc
10           config_dialog.cc
11           dci_metadata_dialog.cc
12           dir_picker_ctrl.cc
13           film_editor.cc
14           film_viewer.cc
15           filter_dialog.cc
16           filter_view.cc
17           gain_calculator_dialog.cc
18           job_manager_view.cc
19           job_wrapper.cc
20           new_film_dialog.cc
21           properties_dialog.cc
22           server_dialog.cc
23           wx_util.cc
24           wx_ui_signaller.cc
25           """
26
27 def configure(conf):
28     wx_args = '--cppflags --cxxflags --libs'
29     if conf.env.STATIC:
30         wx_args += ' --static'
31
32     conf.check_cfg(msg='Checking for wxWidgets', package='', path=conf.options.wx_config, args=wx_args
33                    uselib_store='WXWIDGETS', mandatory=True)
34  
35     if conf.env.STATIC:
36         # wx-config returns its static libraries as full paths, without -l prefixes, which I think confuses
37         # check_cfg(), so it ends up putting these libraries before even the .cc file when linking.
38         # This hack works around that.
39         conf.env.STLIB_WXWIDGETS = ['wx_gtk2u_xrc-2.9', 'wx_gtk2u_qa-2.9', 'wx_baseu_net-2.9', 'wx_gtk2u_html-2.9',
40                                     'wx_gtk2u_adv-2.9', 'wx_gtk2u_core-2.9', 'wx_baseu_xml-2.9', 'wx_baseu-2.9']
41
42     conf.in_msg = 1
43     wx_version = conf.check_cfg(package='', path=conf.options.wx_config, args='--version').strip()
44     conf.im_msg = 0
45     if wx_version != '2.9.4':
46         conf.fatal('wxwidgets version 2.9.4 is required; %s found' % wx_version)
47
48 def build(bld):
49     if bld.env.STATIC:
50         obj = bld(features = 'cxx cxxstlib')
51     else:
52         obj = bld(features = 'cxx cxxshlib')
53
54     obj.name   = 'libdvdomatic-wx'
55     obj.includes = [ '..' ]
56     obj.export_includes = ['.']
57     obj.uselib = 'WXWIDGETS'
58     if bld.env.TARGET_LINUX:
59         obj.uselib += ' GTK'
60     obj.use = 'libdvdomatic'
61     obj.source = sources
62     obj.target = 'dvdomatic-wx'
63
64     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdvdomatic-wx', bld)
65
66 def pot(bld):
67     i18n.pot(os.path.join('src', 'wx'), sources, 'libdvdomatic-wx')
68
69 def pot_merge(bld):
70     i18n.pot_merge(os.path.join('src', 'wx'), 'libdvdomatic-wx')