Hack to link wxwidgets statically on --static.
[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     conf.check_cfg(msg='Checking for wxWidgets', package='', path=conf.options.wx_config,
29                    args='--cppflags --cxxflags --libs',
30                    uselib_store='WXWIDGETS', mandatory=True)
31  
32     if conf.env.STATIC:
33         # wx-config returns its static libraries as full paths, without -l prefixes, which I think confuses
34         # check_cfg(), so it ends up putting these libraries before even the .cc file when linking.
35         # This hack works around that.
36         conf.env.STLIB_WXWIDGETS = ['wx_gtk2u_xrc-2.9', 'wx_gtk2u_qa-2.9', 'wx_baseu_net-2.9', 'wx_gtk2u_html-2.9',
37                                     'wx_gtk2u_adv-2.9', 'wx_gtk2u_core-2.9', 'wx_baseu_xml-2.9', 'wx_baseu-2.9']
38
39     conf.in_msg = 1
40     wx_version = conf.check_cfg(package='', path=conf.options.wx_config, args='--version').strip()
41     conf.im_msg = 0
42     if wx_version != '2.9.4':
43         conf.fatal('wxwidgets version 2.9.4 is required; %s found' % wx_version)
44
45 def build(bld):
46     if bld.env.STATIC:
47         obj = bld(features = 'cxx cxxstlib')
48     else:
49         obj = bld(features = 'cxx cxxshlib')
50
51     obj.name   = 'libdvdomatic-wx'
52     obj.includes = [ '..' ]
53     obj.export_includes = ['.']
54     obj.uselib = 'WXWIDGETS'
55     obj.use = 'libdvdomatic'
56     obj.source = sources
57     obj.target = 'dvdomatic-wx'
58
59     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdvdomatic-wx', bld)
60
61 def pot(bld):
62     i18n.pot(os.path.join('src', 'wx'), sources, 'libdvdomatic-wx')
63
64 def pot_merge(bld):
65     i18n.pot_merge(os.path.join('src', 'wx'), 'libdvdomatic-wx')