Bump version
[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, args='--cppflags --cxxflags --libs',
29                    uselib_store='WXWIDGETS', mandatory=True)
30
31     if conf.env.STATIC:
32         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
33         # check_cfg(), so just hard-code it all.
34         conf.env.STLIB_WXWIDGETS = ['wx_gtk2u_xrc-2.9', 'wx_gtk2u_qa-2.9', 'wx_baseu_net-2.9', 'wx_gtk2u_html-2.9',
35                                     'wx_gtk2u_adv-2.9', 'wx_gtk2u_core-2.9', 'wx_baseu_xml-2.9', 'wx_baseu-2.9']
36         conf.env.LIB_WXWIDGETS = ['tiff', 'SM']
37  
38     conf.in_msg = 1
39     wx_version = conf.check_cfg(package='', path=conf.options.wx_config, args='--version').strip()
40     conf.im_msg = 0
41     if wx_version != '2.9.4':
42         conf.fatal('wxwidgets version 2.9.4 is required; %s found' % wx_version)
43
44 def build(bld):
45     if bld.env.STATIC:
46         obj = bld(features = 'cxx cxxstlib')
47     else:
48         obj = bld(features = 'cxx cxxshlib')
49
50     obj.name   = 'libdvdomatic-wx'
51     obj.includes = [ '..' ]
52     obj.export_includes = ['.']
53     obj.uselib = 'WXWIDGETS'
54     if bld.env.TARGET_LINUX:
55         obj.uselib += ' GTK'
56     obj.use = 'libdvdomatic'
57     obj.source = sources
58     obj.target = 'dvdomatic-wx'
59
60     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdvdomatic-wx', bld)
61
62 def pot(bld):
63     i18n.pot(os.path.join('src', 'wx'), sources, 'libdvdomatic-wx')
64
65 def pot_merge(bld):
66     i18n.pot_merge(os.path.join('src', 'wx'), 'libdvdomatic-wx')