Try to fix build; link failure of FontConfig.
[dcpomatic.git] / wscript
1 #
2 #    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3 #
4 #    This program is free software; you can redistribute it and/or modify
5 #    it under the terms of the GNU General Public License as published by
6 #    the Free Software Foundation; either version 2 of the License, or
7 #    (at your option) any later version.
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program; if not, write to the Free Software
16 #    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 #
18
19 import subprocess
20 import os
21 import shlex
22 import sys
23 import glob
24 import distutils
25 import distutils.spawn
26 from waflib import Logs
27
28 APPNAME = 'dcpomatic'
29 VERSION = '2.1.44devel'
30
31 def options(opt):
32     opt.load('compiler_cxx')
33     opt.load('winres')
34
35     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
36     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
37     opt.add_option('--disable-tests',     action='store_true', default=False, help='disable building of tests')
38     opt.add_option('--install-prefix',                         default=None,  help='prefix of where DCP-o-matic will be installed')
39     opt.add_option('--target-windows',    action='store_true', default=False, help='set up to do a cross-compile to make a Windows package')
40     opt.add_option('--static-dcpomatic',  action='store_true', default=False, help='link to components of DCP-o-matic statically')
41     opt.add_option('--static-boost',      action='store_true', default=False, help='link statically to Boost')
42     opt.add_option('--static-openjpeg',   action='store_true', default=False, help='link statically to OpenJPEG')
43     opt.add_option('--static-wxwidgets',  action='store_true', default=False, help='link statically to wxWidgets')
44     opt.add_option('--static-ffmpeg',     action='store_true', default=False, help='link statically to FFmpeg')
45     opt.add_option('--static-xmlpp',      action='store_true', default=False, help='link statically to libxml++')
46     opt.add_option('--static-xmlsec',     action='store_true', default=False, help='link statically to xmlsec')
47     opt.add_option('--static-ssh',        action='store_true', default=False, help='link statically to libssh')
48     opt.add_option('--static-cxml',       action='store_true', default=False, help='link statically to libcxml')
49     opt.add_option('--static-dcp',        action='store_true', default=False, help='link statically to libdcp')
50     opt.add_option('--static-sub',        action='store_true', default=False, help='link statically to libsub')
51     opt.add_option('--static-curl',       action='store_true', default=False, help='link statically to libcurl')
52     opt.add_option('--workaround-gssapi', action='store_true', default=False, help='link to gssapi_krb5')
53
54 def configure(conf):
55     conf.load('compiler_cxx')
56     if conf.options.target_windows:
57         conf.load('winres')
58
59     # Save conf.options that we need elsewhere in conf.env
60     conf.env.DISABLE_GUI = conf.options.disable_gui
61     conf.env.DISABLE_TESTS = conf.options.disable_tests
62     conf.env.TARGET_WINDOWS = conf.options.target_windows
63     conf.env.TARGET_OSX = sys.platform == 'darwin'
64     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
65     conf.env.VERSION = VERSION
66     conf.env.DEBUG = conf.options.enable_debug
67     conf.env.STATIC_DCPOMATIC = conf.options.static_dcpomatic
68     if conf.options.install_prefix is None:
69         conf.env.INSTALL_PREFIX = conf.env.PREFIX
70     else:
71         conf.env.INSTALL_PREFIX = conf.options.install_prefix
72
73     # Common CXXFLAGS
74     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS',
75                                        '-D__STDC_LIMIT_MACROS',
76                                        '-D__STDC_FORMAT_MACROS',
77                                        '-msse',
78                                        '-ffast-math',
79                                        '-fno-strict-aliasing',
80                                        '-Wall',
81                                        '-Wno-attributes',
82                                        '-Wextra',
83                                        '-Wno-unused-result',
84                                        '-D_FILE_OFFSET_BITS=64'])
85
86     if conf.options.enable_debug:
87         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])
88     else:
89         conf.env.append_value('CXXFLAGS', '-O2')
90
91     #
92     # Windows/Linux/OS X specific
93     #
94
95     # Windows
96     if conf.env.TARGET_WINDOWS:
97         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_WINDOWS')
98         conf.env.append_value('CXXFLAGS', '-DWIN32_LEAN_AND_MEAN')
99         conf.env.append_value('CXXFLAGS', '-DBOOST_USE_WINDOWS_H')
100         conf.env.append_value('CXXFLAGS', '-DUNICODE')
101         conf.env.append_value('CXXFLAGS', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN')
102         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
103         conf.env.append_value('CXXFLAGS', '-Wno-deprecated-declarations')
104         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
105         conf.env.append_value('WINRCFLAGS', wxrc)
106         if conf.options.enable_debug:
107             conf.env.append_value('CXXFLAGS', ['-mconsole'])
108             conf.env.append_value('LINKFLAGS', ['-mconsole'])
109         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
110         conf.check(lib='bfd', uselib_store='BFD', msg="Checking for library bfd")
111         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
112         conf.check(lib='iberty', uselib_store='IBERTY', msg="Checking for library iberty")
113         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
114         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
115         boost_lib_suffix = '-mt'
116         boost_thread = 'boost_thread_win32-mt'
117         conf.check_cxx(fragment="""
118                                #include <boost/locale.hpp>\n
119                                int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
120                                """,
121                                msg='Checking for boost locale library',
122                                libpath='/usr/local/lib',
123                                lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
124                                uselib_store='BOOST_LOCALE')
125
126     # POSIX
127     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
128         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
129         boost_lib_suffix = ''
130         boost_thread = 'boost_thread'
131         conf.env.append_value('LINKFLAGS', '-pthread')
132
133     # Linux
134     if conf.env.TARGET_LINUX:
135         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
136         conf.env.append_value('CXXFLAGS', '-DLINUX_LOCALE_PREFIX="%s/share/locale"' % conf.env['INSTALL_PREFIX'])
137         conf.env.append_value('CXXFLAGS', '-DLINUX_SHARE_PREFIX="%s/share/dcpomatic2"' % conf.env['INSTALL_PREFIX'])
138         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
139         if not conf.env.DISABLE_GUI:
140             conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
141
142     # OSX
143     if conf.env.TARGET_OSX:
144         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_OSX', '-Wno-unused-function', '-Wno-unused-parameter'])
145         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
146
147     #
148     # Dependencies.
149     #
150
151     # It should be possible to use check_cfg for both dynamic and static linking, but
152     # e.g. pkg-config --libs --static foo returns some libraries that should be statically
153     # linked and others that should be dynamic.  This doesn't work too well with waf
154     # as it wants them separate.
155
156     # libcurl
157     if conf.options.static_curl:
158         conf.env.STLIB_CURL = ['curl']
159         conf.env.LIB_CURL = ['ssh2', 'idn']
160     else:
161         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
162
163
164     # libsndfile
165     conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
166
167     # glib
168     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
169
170     # ImageMagick / GraphicsMagick
171     if distutils.spawn.find_executable('Magick++-config'):
172         conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
173         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
174     else:
175         image = conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
176         graphics = conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
177         if image is None and graphics is None:
178             Logs.pprint('RED', 'Neither ImageMagick++ nor GraphicsMagick++ found: one or the other is required')
179         if image is not None:
180             conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
181         if graphics is not None:
182             conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_GRAPHICS_MAGICK')
183
184     # libzip
185     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
186
187     # fontconfig
188     conf.check_cfg(package='fontconfig', args='--cflags --libs', uselib_store='FONTCONFIG', mandatory=True)
189
190     # pangomm
191     conf.check_cfg(package='pangomm-1.4', args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
192
193     # cairomm
194     conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
195
196     # libcxml
197     if conf.options.static_cxml:
198         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags', uselib_store='CXML', mandatory=True)
199         conf.env.STLIB_CXML = ['cxml']
200     else:
201         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs', uselib_store='CXML', mandatory=True)
202
203     # libssh
204     if conf.options.static_ssh:
205         conf.env.STLIB_SSH = ['ssh']
206         if conf.options.workaround_gssapi:
207             conf.env.LIB_SSH = ['gssapi_krb5']
208     else:
209         conf.check_cc(fragment="""
210                                #include <libssh/libssh.h>\n
211                                int main () {\n
212                                ssh_session s = ssh_new ();\n
213                                return 0;\n
214                                }
215                                """,
216                       msg='Checking for library libssh',
217                       mandatory=True,
218                       lib='ssh',
219                       uselib_store='SSH')
220
221     # libdcp
222     if conf.options.static_dcp:
223         conf.check_cfg(package='libdcp-1.0', atleast_version='1.2.0', args='--cflags', uselib_store='DCP', mandatory=True)
224         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
225         conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-libdcp-1.0', 'kumu-libdcp-1.0']
226         conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
227     else:
228         conf.check_cfg(package='libdcp-1.0', atleast_version='1.2.0', args='--cflags --libs', uselib_store='DCP', mandatory=True)
229         conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
230
231     # libsub
232     if conf.options.static_sub:
233         conf.check_cfg(package='libsub-1.0', atleast_version='1.1.0', args='--cflags', uselib_store='SUB', mandatory=True)
234         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
235         conf.env.STLIB_SUB = ['sub-1.0']
236     else:
237         conf.check_cfg(package='libsub-1.0', atleast_version='1.1.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
238         conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
239
240     # libxml++
241     if conf.options.static_xmlpp:
242         conf.env.STLIB_XMLPP = ['xml++-2.6']
243     else:
244         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
245
246     # libxmlsec
247     if conf.options.static_xmlsec:
248         conf.env.STLIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
249     else:
250         conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
251
252     # OpenJPEG
253     if conf.options.static_openjpeg:
254         conf.check_cfg(package='libopenjpeg', args='--cflags', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
255         conf.check_cfg(package='libopenjpeg', args='--cflags', max_version='1.5.2', mandatory=True)
256         conf.env.STLIB_OPENJPEG = ['openjpeg']
257     else:
258         conf.check_cfg(package='libopenjpeg', args='--cflags --libs', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
259         conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.2', mandatory=True)
260
261     # FFmpeg
262     if conf.options.static_ffmpeg:
263         names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'swresample', 'postproc']
264         for name in names:
265             static = subprocess.Popen(shlex.split('pkg-config --static --libs lib%s' % name), stdout=subprocess.PIPE).communicate()[0]
266             libs = []
267             stlibs = []
268             include = []
269             libpath = []
270             for s in static.split():
271                 if s.startswith('-L'):
272                     libpath.append(s[2:])
273                 elif s.startswith('-I'):
274                     include.append(s[2:])
275                 elif s.startswith('-l'):
276                     if s[2:] not in names:
277                         libs.append(s[2:])
278                     else:
279                         stlibs.append(s[2:])
280
281             conf.env['LIB_%s' % name.upper()] = libs
282             conf.env['STLIB_%s' % name.upper()] = stlibs
283             conf.env['INCLUDES_%s' % name.upper()] = include
284             conf.env['LIBPATH_%s' % name.upper()] = libpath
285     else:
286         conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
287         conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
288         conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
289         conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
290         conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
291         conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
292         conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
293
294     # Boost
295     if conf.options.static_boost:
296         conf.env.STLIB_BOOST_THREAD = ['boost_thread']
297         conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % boost_lib_suffix]
298         conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix]
299         conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
300         conf.env.STLIB_BOOST_SYSTEM = ['boost_system']
301         conf.env.STLIB_BOOST_REGEX = ['boost_regex']
302     else:
303         conf.check_cxx(fragment="""
304                             #include <boost/version.hpp>\n
305                             #if BOOST_VERSION < 104500\n
306                             #error boost too old\n
307                             #endif\n
308                             int main(void) { return 0; }\n
309                             """,
310                        mandatory=True,
311                        msg='Checking for boost library >= 1.45',
312                        okmsg='yes',
313                        errmsg='too old\nPlease install boost version 1.45 or higher.')
314
315         conf.check_cxx(fragment="""
316                             #include <boost/thread.hpp>\n
317                             int main() { boost::thread t (); }\n
318                             """,
319                        msg='Checking for boost threading library',
320                        libpath='/usr/local/lib',
321                        lib=[boost_thread, 'boost_system%s' % boost_lib_suffix],
322                        uselib_store='BOOST_THREAD')
323
324         conf.check_cxx(fragment="""
325                             #include <boost/filesystem.hpp>\n
326                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
327                             """,
328                        msg='Checking for boost filesystem library',
329                        libpath='/usr/local/lib',
330                        lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
331                        uselib_store='BOOST_FILESYSTEM')
332
333         conf.check_cxx(fragment="""
334                             #include <boost/date_time.hpp>\n
335                             int main() { boost::gregorian::day_clock::local_day(); }\n
336                             """,
337                        msg='Checking for boost datetime library',
338                        libpath='/usr/local/lib',
339                        lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
340                        uselib_store='BOOST_DATETIME')
341
342         conf.check_cxx(fragment="""
343                             #include <boost/signals2.hpp>\n
344                             int main() { boost::signals2::signal<void (int)> x; }\n
345                             """,
346                        msg='Checking for boost signals2 library',
347                        uselib_store='BOOST_SIGNALS2')
348
349         conf.check_cxx(fragment="""
350                             #include <boost/regex.hpp>\n
351                             int main() { boost::regex re ("foo"); }\n
352                             """,
353                        msg='Checking for boost regex library',
354                        lib=['boost_regex%s' % boost_lib_suffix],
355                        uselib_store='BOOST_REGEX')
356
357     # Other stuff
358
359     conf.find_program('msgfmt', var='MSGFMT')
360
361     datadir = conf.env.DATADIR
362     if not datadir:
363         datadir = os.path.join(conf.env.PREFIX, 'share')
364
365     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
366     conf.define('DATADIR', datadir)
367
368     conf.recurse('src')
369     if not conf.env.DISABLE_TESTS:
370         conf.recurse('test')
371
372     Logs.pprint('YELLOW', '')
373     if conf.env.TARGET_WINDOWS:
374         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Windows')
375     elif conf.env.TARGET_LINUX:
376         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': Linux')
377     elif conf.env.TARGET_OSX:
378         Logs.pprint('YELLOW', '\t' + 'Target'.ljust(25) + ': OS X')
379
380     def report(name, variable):
381         linkage = ''
382         if variable:
383             linkage = 'static'
384         else:
385             linkage = 'dynamic'
386         Logs.pprint('YELLOW', '\t%s: %s' % (name.ljust(25), linkage))
387
388     report('DCP-o-matic libraries', conf.options.static_dcpomatic)
389     report('Boost', conf.options.static_boost)
390     report('OpenJPEG', conf.options.static_openjpeg)
391     report('wxWidgets', conf.options.static_wxwidgets)
392     report('FFmpeg', conf.options.static_ffmpeg)
393     report('libxml++', conf.options.static_xmlpp)
394     report('xmlsec', conf.options.static_xmlsec)
395     report('libssh', conf.options.static_ssh)
396     report('libcxml', conf.options.static_cxml)
397     report('libdcp', conf.options.static_dcp)
398     report('libcurl', conf.options.static_curl)
399
400     Logs.pprint('YELLOW', '')
401
402 def build(bld):
403     create_version_cc(VERSION, bld.env.CXXFLAGS)
404
405     bld.recurse('src')
406     if not bld.env.DISABLE_TESTS:
407         bld.recurse('test')
408     if bld.env.TARGET_WINDOWS:
409         bld.recurse('platform/windows')
410     if bld.env.TARGET_LINUX:
411         bld.recurse('platform/linux')
412     if bld.env.TARGET_OSX:
413         bld.recurse('platform/osx')
414
415     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
416         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'graphics/%s/dcpomatic2.png' % r)
417
418     if not bld.env.TARGET_WINDOWS:
419         bld.install_files('${PREFIX}/share/dcpomatic2', 'graphics/taskbar_icon.png')
420         bld.install_files('${PREFIX}/share/dcpomatic2', 'graphics/splash.png')
421         bld.install_files('${PREFIX}/share/dcpomatic2', 'LiberationSans-Regular.ttf')
422
423     bld.add_post_fun(post)
424
425 def git_revision():
426     if not os.path.exists('.git'):
427         return None
428
429     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
430     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
431     o = output[0].decode('utf-8')
432     return o.replace("commit ", "")[0:10]
433
434 def dist(ctx):
435     r = git_revision()
436     if r is not None:
437         f = open('.git_revision', 'w')
438         print >>f,r
439     f.close()
440
441     ctx.excl = """
442                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
443                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
444                GRSYMS GRTAGS GSYMS GTAGS
445                """
446
447 def create_version_cc(version, cxx_flags):
448     commit = git_revision()
449     if commit is None and os.path.exists('.git_revision'):
450         f = open('.git_revision', 'r')
451         commit = f.readline().strip()
452
453     if commit is None:
454         commit = 'release'
455
456     try:
457         text =  '#include "version.h"\n'
458         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
459         text += 'char const * dcpomatic_version = \"%s\";\n' % version
460
461         t = ''
462         for f in cxx_flags:
463             f = f.replace('"', '\\"')
464             t += f + ' '
465         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
466
467         print('Writing version information to src/lib/version.cc')
468         o = open('src/lib/version.cc', 'w')
469         o.write(text)
470         o.close()
471     except IOError:
472         print('Could not open src/lib/version.cc for writing\n')
473         sys.exit(-1)
474
475 def post(ctx):
476     if ctx.cmd == 'install':
477         ctx.exec_command('/sbin/ldconfig')
478
479 def pot(bld):
480     bld.recurse('src')
481
482 def pot_merge(bld):
483     bld.recurse('src')
484
485 def tags(bld):
486     os.system('etags src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc src/tools/*.h')
487
488 def zanata_pull(bld):
489     os.system('zanata-cli -B -q pull -t .')
490     for f in glob.glob('src/lib/po/*.po'):
491         l = os.path.basename(f)
492         os.rename('dcpomatic_%s' % l, 'src/tools/po/%s' % l)
493         os.rename('libdcpomatic_%s' % l, 'src/lib/po/%s' % l)
494         os.rename('libdcpomatic-wx_%s' % l, 'src/wx/po/%s' % l)
495
496 def cppcheck(bld):
497     os.system('cppcheck --enable=all --quiet .')