Merge master.
[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_mapping_view.cc
10           audio_plot.cc
11           config_dialog.cc
12           dci_metadata_dialog.cc
13           dir_picker_ctrl.cc
14           film_editor.cc
15           film_viewer.cc
16           filter_dialog.cc
17           filter_view.cc
18           gain_calculator_dialog.cc
19           imagemagick_content_dialog.cc
20           job_manager_view.cc
21           job_wrapper.cc
22           new_film_dialog.cc
23           properties_dialog.cc
24           server_dialog.cc
25           timecode.cc
26           timeline.cc
27           timeline_dialog.cc
28           wx_util.cc
29           wx_ui_signaller.cc
30           """
31
32 def configure(conf):
33     conf.check_cfg(msg='Checking for wxWidgets', package='', path=conf.options.wx_config, args='--cppflags --cxxflags --libs',
34                    uselib_store='WXWIDGETS', mandatory=True)
35
36     if conf.env.STATIC:
37         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
38         # check_cfg(), so just hard-code it all.
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         conf.env.LIB_WXWIDGETS = ['tiff', 'SM']
42  
43     conf.in_msg = 1
44     wx_version = conf.check_cfg(package='', path=conf.options.wx_config, args='--version').strip()
45     conf.im_msg = 0
46     if wx_version != '2.9.4':
47         conf.fatal('wxwidgets version 2.9.4 is required; %s found' % wx_version)
48
49 def build(bld):
50     if bld.env.STATIC:
51         obj = bld(features = 'cxx cxxstlib')
52     else:
53         obj = bld(features = 'cxx cxxshlib')
54
55     obj.name   = 'libdcpomatic-wx'
56     obj.includes = [ '..' ]
57     obj.export_includes = ['.']
58     obj.uselib = 'WXWIDGETS'
59     if bld.env.TARGET_LINUX:
60         obj.uselib += ' GTK'
61     obj.use = 'libdcpomatic'
62     obj.source = sources
63     obj.target = 'dcpomatic-wx'
64
65     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic-wx', bld)
66
67 def pot(bld):
68     i18n.pot(os.path.join('src', 'wx'), sources, 'libdcpomatic-wx')
69
70 def pot_merge(bld):
71     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')