Give content menu on both main control and timeline. Fix silly bug on updating edito...
[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           content_menu.cc
13           dci_metadata_dialog.cc
14           dir_picker_ctrl.cc
15           film_editor.cc
16           film_viewer.cc
17           filter_dialog.cc
18           filter_view.cc
19           gain_calculator_dialog.cc
20           still_image_content_dialog.cc
21           job_manager_view.cc
22           job_wrapper.cc
23           new_film_dialog.cc
24           properties_dialog.cc
25           repeat_dialog.cc
26           server_dialog.cc
27           timecode.cc
28           timeline.cc
29           timeline_dialog.cc
30           wx_util.cc
31           wx_ui_signaller.cc
32           """
33
34 def configure(conf):
35     args = '--cppflags --cxxflags'
36     if not conf.env.STATIC:
37         args += ' --libs'
38
39     conf.check_cfg(msg='Checking for wxWidgets', package='', path=conf.options.wx_config, args=args,
40                    uselib_store='WXWIDGETS', mandatory=True)
41
42     if conf.env.STATIC:
43         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
44         # check_cfg(), so just hard-code it all.
45         conf.env.STLIB_WXWIDGETS = ['wx_gtk2u_xrc-2.9', 'wx_gtk2u_qa-2.9', 'wx_baseu_net-2.9', 'wx_gtk2u_html-2.9',
46                                     'wx_gtk2u_adv-2.9', 'wx_gtk2u_core-2.9', 'wx_baseu_xml-2.9', 'wx_baseu-2.9']
47         conf.env.LIB_WXWIDGETS = ['tiff', 'SM', 'dl', 'jpeg', 'png', 'X11']
48  
49     conf.in_msg = 1
50     wx_version = conf.check_cfg(package='', path=conf.options.wx_config, args='--version').strip()
51     conf.im_msg = 0
52     if wx_version != '2.9.4':
53         conf.fatal('wxwidgets version 2.9.4 is required; %s found' % wx_version)
54
55 def build(bld):
56     if bld.env.STATIC:
57         obj = bld(features = 'cxx cxxstlib')
58     else:
59         obj = bld(features = 'cxx cxxshlib')
60
61     obj.name   = 'libdcpomatic-wx'
62 #    obj.includes = [ '..' ]
63     obj.export_includes = ['..']
64     obj.uselib = 'WXWIDGETS'
65     if bld.env.TARGET_LINUX:
66         obj.uselib += ' GTK'
67     obj.use = 'libdcpomatic'
68     obj.source = sources
69     obj.target = 'dcpomatic-wx'
70
71     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic-wx', bld)
72
73 def pot(bld):
74     i18n.pot(os.path.join('src', 'wx'), sources, 'libdcpomatic-wx')
75
76 def pot_merge(bld):
77     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')