Merge master.
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4 import distutils
5 import distutils.spawn
6
7 APPNAME = 'dcpomatic'
8 VERSION = '2.0.14devel'
9
10 def options(opt):
11     opt.load('compiler_cxx')
12     opt.load('winres')
13
14     opt.add_option('--enable-debug',      action='store_true', default=False, help='build with debugging information and without optimisation')
15     opt.add_option('--disable-gui',       action='store_true', default=False, help='disable building of GUI tools')
16     opt.add_option('--disable-tests',     action='store_true', default=False, help='disable building of tests')
17     opt.add_option('--target-windows',    action='store_true', default=False, help='set up to do a cross-compile to make a Windows package')
18     opt.add_option('--target-debian',     action='store_true', default=False, help='set up to compile for a Debian/Ubuntu package')
19     opt.add_option('--debian-unstable',   action='store_true', default=False, help='add extra libraries to static-build correctly on Debian unstable')
20     opt.add_option('--target-centos-6',   action='store_true', default=False, help='set up to compile for a Centos 6.5 package')
21     opt.add_option('--target-centos-7',   action='store_true', default=False, help='set up to compile for a Centos 7 package')
22     opt.add_option('--magickpp-config',   action='store',      default='Magick++-config', help='path to Magick++-config')
23     opt.add_option('--wx-config',         action='store',      default='wx-config', help='path to wx-config')
24     opt.add_option('--address-sanitizer', action='store_true', default=False, help='build with address sanitizer')
25     opt.add_option('--install-prefix',                         default=None,  help='prefix of where DCP-o-matic will be installed')
26
27 def static_ffmpeg(conf):
28     conf.check_cfg(package='libavformat', args='--cflags', uselib_store='AVFORMAT', mandatory=True)
29     conf.env.STLIB_AVFORMAT = ['avformat']
30     conf.check_cfg(package='libavfilter', args='--cflags', uselib_store='AVFILTER', mandatory=True)
31     conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
32     conf.check_cfg(package='libavcodec', args='--cflags', uselib_store='AVCODEC', mandatory=True)
33     # lzma link is needed by Centos 7, at least
34     conf.env.STLIB_AVCODEC = ['avcodec']
35     conf.env.LIB_AVCODEC = ['z', 'lzma']
36     conf.check_cfg(package='libavutil', args='--cflags', uselib_store='AVUTIL', mandatory=True)
37     conf.env.STLIB_AVUTIL = ['avutil']
38     conf.check_cfg(package='libswscale', args='--cflags', uselib_store='SWSCALE', mandatory=True)
39     conf.env.STLIB_SWSCALE = ['swscale']
40     conf.check_cfg(package='libswresample', args='--cflags', uselib_store='SWRESAMPLE', mandatory=True)
41     conf.env.STLIB_SWRESAMPLE = ['swresample']
42     conf.check_cfg(package='libpostproc', args='--cflags', uselib_store='POSTPROC', mandatory=True)
43     conf.env.STLIB_POSTPROC = ['postproc']
44
45 def dynamic_ffmpeg(conf):
46     conf.check_cfg(package='libavformat', args='--cflags --libs', uselib_store='AVFORMAT', mandatory=True)
47     conf.check_cfg(package='libavfilter', args='--cflags --libs', uselib_store='AVFILTER', mandatory=True)
48     conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
49     conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
50     conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
51     conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
52     conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
53
54 def static_openjpeg(conf):
55     conf.check_cfg(package='libopenjpeg', args='--cflags', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
56     conf.check_cfg(package='libopenjpeg', args='--cflags', max_version='1.5.2', mandatory=True)
57     conf.env.STLIB_OPENJPEG = ['openjpeg']
58
59 def dynamic_openjpeg(conf):
60     conf.check_cfg(package='libopenjpeg', args='--cflags --libs', atleast_version='1.5.0', uselib_store='OPENJPEG', mandatory=True)
61     conf.check_cfg(package='libopenjpeg', args='--cflags --libs', max_version='1.5.2', mandatory=True)
62
63 def static_sub(conf):
64     conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags', uselib_store='SUB', mandatory=True)
65     conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
66     conf.env.STLIB_SUB = ['sub']
67
68 def static_dcp(conf, static_boost, static_xmlpp, static_xmlsec, static_ssh):
69     conf.check_cfg(package='libdcp-1.0', atleast_version='1.0', args='--cflags', uselib_store='DCP', mandatory=True)
70     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
71     conf.env.STLIB_DCP = ['dcp-1.0', 'asdcp-libdcp-1.0', 'kumu-libdcp-1.0']
72     conf.env.LIB_DCP = ['glibmm-2.4', 'ssl', 'crypto', 'bz2', 'xslt']
73
74     if static_boost:
75         conf.env.STLIB_DCP.append('boost_system')
76
77     if static_xmlpp:
78         conf.env.STLIB_DCP.append('xml++-2.6')
79     else:
80         conf.env.LIB_DCP.append('xml++-2.6')
81
82     if static_xmlsec:
83         conf.env.STLIB_DCP.append('xmlsec1-openssl')
84         conf.env.STLIB_DCP.append('xmlsec1')
85     else:
86         conf.env.LIB_DCP.append('xmlsec1-openssl')
87         conf.env.LIB_DCP.append('xmlsec1')
88
89     if static_ssh:
90         conf.env.STLIB_DCP.append('ssh')
91     else:
92         conf.env.LIB_DCP.append('ssh')
93
94 def dynamic_dcp(conf):
95     conf.check_cfg(package='libdcp-1.0', atleast_version='0.92', args='--cflags --libs', uselib_store='DCP', mandatory=True)
96     conf.env.DEFINES_DCP = [f.replace('\\', '') for f in conf.env.DEFINES_DCP]
97
98 def dynamic_sub(conf):
99     conf.check_cfg(package='libsub', atleast_version='0.01.0', args='--cflags --libs', uselib_store='SUB', mandatory=True)
100     conf.env.DEFINES_SUB = [f.replace('\\', '') for f in conf.env.DEFINES_SUB]
101
102 def dynamic_ssh(conf):
103     conf.check_cc(fragment="""
104                            #include <libssh/libssh.h>\n
105                            int main () {\n
106                            ssh_session s = ssh_new ();\n
107                            return 0;\n
108                            }
109                            """, msg='Checking for library libssh', mandatory=True, lib='ssh', uselib_store='SSH')
110
111 def dynamic_boost(conf, lib_suffix, thread):
112     conf.check_cxx(fragment="""
113                             #include <boost/version.hpp>\n
114                             #if BOOST_VERSION < 104500\n
115                             #error boost too old\n
116                             #endif\n
117                             int main(void) { return 0; }\n
118                             """,
119                    mandatory=True,
120                    msg='Checking for boost library >= 1.45',
121                    okmsg='yes',
122                    errmsg='too old\nPlease install boost version 1.45 or higher.')
123
124     conf.check_cxx(fragment="""
125                             #include <boost/thread.hpp>\n
126                             int main() { boost::thread t (); }\n
127                             """, msg='Checking for boost threading library',
128                             libpath='/usr/local/lib',
129                             lib=[thread, 'boost_system%s' % lib_suffix],
130                             uselib_store='BOOST_THREAD')
131
132     conf.check_cxx(fragment="""
133                             #include <boost/filesystem.hpp>\n
134                             int main() { boost::filesystem::copy_file ("a", "b"); }\n
135                             """, msg='Checking for boost filesystem library',
136                             libpath='/usr/local/lib',
137                             lib=['boost_filesystem%s' % lib_suffix, 'boost_system%s' % lib_suffix],
138                             uselib_store='BOOST_FILESYSTEM')
139
140     conf.check_cxx(fragment="""
141                             #include <boost/date_time.hpp>\n
142                             int main() { boost::gregorian::day_clock::local_day(); }\n
143                             """, msg='Checking for boost datetime library',
144                             libpath='/usr/local/lib',
145                             lib=['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix],
146                             uselib_store='BOOST_DATETIME')
147
148     conf.check_cxx(fragment="""
149                             #include <boost/signals2.hpp>\n
150                             int main() { boost::signals2::signal<void (int)> x; }\n
151                             """,
152                             msg='Checking for boost signals2 library',
153                             uselib_store='BOOST_SIGNALS2')
154
155 def static_boost(conf, lib_suffix):
156     conf.env.STLIB_BOOST_THREAD = ['boost_thread']
157     conf.env.STLIB_BOOST_FILESYSTEM = ['boost_filesystem%s' % lib_suffix]
158     conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix]
159     conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
160
161 def dynamic_quickmail(conf):
162     conf.check_cxx(fragment="""
163                             #include <quickmail.h>
164                             int main(void) { quickmail_initialize (); }
165                             """,
166                    mandatory=True,
167                    msg='Checking for libquickmail',
168                    libpath='/usr/local/lib',
169                    lib=['quickmail', 'curl'],
170                    uselib_store='QUICKMAIL')
171
172 def configure(conf):
173     conf.load('compiler_cxx')
174     if conf.options.target_windows:
175         conf.load('winres')
176
177     # conf.options -> conf.env
178     conf.env.TARGET_WINDOWS = conf.options.target_windows
179     conf.env.DISABLE_GUI = conf.options.disable_gui
180     conf.env.DISABLE_TESTS = conf.options.disable_tests
181     conf.env.TARGET_DEBIAN = conf.options.target_debian
182     conf.env.DEBIAN_UNSTABLE = conf.options.debian_unstable
183     conf.env.TARGET_CENTOS_6 = conf.options.target_centos_6
184     conf.env.TARGET_CENTOS_7 = conf.options.target_centos_7
185     conf.env.VERSION = VERSION
186     conf.env.TARGET_OSX = sys.platform == 'darwin'
187     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
188     # true if we should build dcpomatic/libdcpomatic/libdcpomatic-wx statically
189     conf.env.BUILD_STATIC = conf.options.target_debian or conf.options.target_centos_6 or conf.options.target_centos_7
190     if conf.options.install_prefix is None:
191         conf.env.INSTALL_PREFIX = conf.env.PREFIX
192     else:
193         conf.env.INSTALL_PREFIX = conf.options.install_prefix
194
195     # Common CXXFLAGS
196     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-D__STDC_LIMIT_MACROS', '-msse', '-ffast-math', '-fno-strict-aliasing',
197                                        '-Wall', '-Wno-attributes', '-Wextra', '-Wno-unused-result', '-D_FILE_OFFSET_BITS=64'])
198
199     if conf.options.enable_debug:
200         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])
201     else:
202         conf.env.append_value('CXXFLAGS', '-O2')
203
204     if conf.options.address_sanitizer:
205         conf.env.append_value('CXXFLAGS', ['-fsanitize=address', '-fno-omit-frame-pointer'])
206         conf.env.append_value('LINKFLAGS', ['-fsanitize=address'])
207
208     #
209     # Platform-specific CFLAGS hacks and other tinkering
210     #
211
212     # Windows
213     if conf.env.TARGET_WINDOWS:
214         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_WINDOWS')
215         conf.env.append_value('CXXFLAGS', '-DWIN32_LEAN_AND_MEAN')
216         conf.env.append_value('CXXFLAGS', '-DBOOST_USE_WINDOWS_H')
217         conf.env.append_value('CXXFLAGS', '-DUNICODE')
218         conf.env.append_value('CXXFLAGS', '-DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN')
219         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
220         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
221         conf.env.append_value('WINRCFLAGS', wxrc)
222         if conf.options.enable_debug:
223             conf.env.append_value('CXXFLAGS', ['-mconsole'])
224             conf.env.append_value('LINKFLAGS', ['-mconsole'])
225         conf.check(lib='ws2_32', uselib_store='WINSOCK2', msg="Checking for library winsock2")
226         conf.check(lib='bfd', uselib_store='BFD', msg="Checking for library bfd")
227         conf.check(lib='dbghelp', uselib_store='DBGHELP', msg="Checking for library dbghelp")
228         conf.check(lib='iberty', uselib_store='IBERTY', msg="Checking for library iberty")
229         conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi")
230         conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock")
231         boost_lib_suffix = '-mt'
232         boost_thread = 'boost_thread_win32-mt'
233
234     # POSIX
235     if conf.env.TARGET_LINUX or conf.env.TARGET_OSX:
236         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
237         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['INSTALL_PREFIX'])
238         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dcpomatic2"' % conf.env['INSTALL_PREFIX'])
239         boost_lib_suffix = ''
240         boost_thread = 'boost_thread'
241         conf.env.append_value('LINKFLAGS', '-pthread')
242
243     # Linux
244     if conf.env.TARGET_LINUX:
245         conf.env.append_value('CXXFLAGS', '-mfpmath=sse')
246         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
247
248     if conf.env.TARGET_DEBIAN:
249         # libxml2 seems to be linked against this on Ubuntu but it doesn't mention it in its .pc file
250         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
251
252     if conf.env.TARGET_CENTOS_6 or conf.env.TARGET_CENTOS_7:
253         # libavcodec seems to be linked against this on Centos
254         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
255         
256     if not conf.env.DISABLE_GUI and conf.env.TARGET_LINUX:
257         conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
258
259     # OSX
260     if conf.env.TARGET_OSX:
261         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_OSX', '-Wno-unused-function', '-Wno-unused-parameter'])
262         conf.env.append_value('LINKFLAGS', '-headerpad_max_install_names')
263
264     #
265     # Dependencies.
266     # There's probably a neater way of expressing these, but I've gone for brute force for now.
267     #
268
269     if conf.env.TARGET_DEBIAN:
270         conf.check_cfg(package='libcxml', atleast_version='0.11', args='--cflags', uselib_store='CXML', mandatory=True)
271         conf.env.STLIB_CXML = ['cxml']
272         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
273         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
274         conf.env.STLIB_QUICKMAIL = ['quickmail']
275         static_ffmpeg(conf)
276         static_openjpeg(conf)
277         static_sub(conf)
278         static_dcp(conf, False, False, False, False)
279         dynamic_boost(conf, boost_lib_suffix, boost_thread)
280
281     if conf.env.TARGET_CENTOS_6:
282         # Centos 6.5's boost is too old, so we build a new version statically in the chroot
283         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs-only-L', uselib_store='CXML', mandatory=True)
284         conf.env.STLIB_CXML = ['cxml', 'boost_filesystem']
285         conf.check_cfg(package='libcurl', args='--cflags --libs-only-L', uselib_store='CURL', mandatory=True)
286         conf.env.STLIB_CURL = ['curl']
287         conf.env.LIB_CURL = ['ssh2', 'idn']
288         conf.env.STLIB_QUICKMAIL = ['quickmail', 'curl']
289         conf.env.LIB_QUICKMAIL = ['ssh2', 'idn']
290         static_ffmpeg(conf)
291         static_openjpeg(conf)
292         static_sub(conf)
293         static_dcp(conf, True, True, True, True)
294         static_boost(conf, boost_lib_suffix)
295
296     if conf.env.TARGET_CENTOS_7:
297         # Centos 7's boost is ok so we link it dynamically
298         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags', uselib_store='CXML', mandatory=True)
299         conf.env.STLIB_CXML = ['cxml']
300         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
301         conf.env.STLIB_QUICKMAIL = ['quickmail']
302         conf.env.LIB_SSH = ['gssapi_krb5']
303         conf.env.LIB_XMLPP = ['xml2']
304         conf.env.LIB_XMLSEC = ['ltdl']
305         static_ffmpeg(conf)
306         static_openjpeg(conf)
307         static_sub(conf)
308         static_dcp(conf, False, True, True, True)
309         dynamic_boost(conf, boost_lib_suffix, boost_thread)
310
311     if conf.env.TARGET_WINDOWS:
312         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
313         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
314         conf.check_cxx(fragment="""
315                                 #include <boost/locale.hpp>\n
316                                 int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
317                                 """, msg='Checking for boost locale library',
318                                 libpath='/usr/local/lib',
319                                 lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
320                                 uselib_store='BOOST_LOCALE')
321         dynamic_quickmail(conf)
322         dynamic_boost(conf, boost_lib_suffix, boost_thread)
323         dynamic_ffmpeg(conf)
324         dynamic_openjpeg(conf)
325         dynamic_dcp(conf)
326         dynamic_sub(conf)
327         dynamic_ssh(conf)
328
329     # Not packaging; just a straight build
330     if not conf.env.TARGET_WINDOWS and not conf.env.TARGET_DEBIAN and not conf.env.TARGET_CENTOS_6 and not conf.env.TARGET_CENTOS_7:
331         conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs', uselib_store='CXML', mandatory=True)
332         conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
333         conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
334         dynamic_quickmail(conf)
335         dynamic_boost(conf, boost_lib_suffix, boost_thread)
336         dynamic_ffmpeg(conf)
337         dynamic_dcp(conf)
338         dynamic_sub(conf)
339         dynamic_openjpeg(conf)
340         dynamic_ssh(conf)
341
342     # Dependencies which are always dynamically linked
343     conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
344     conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)
345     if distutils.spawn.find_executable(conf.options.magickpp_config):
346         conf.check_cfg(package='', path=conf.options.magickpp_config, args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
347         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_IMAGE_MAGICK')
348     else:
349         conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=True)
350         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_GRAPHICS_MAGICK')
351         
352     conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True)
353     conf.check_cfg(package='pangomm-1.4', args='--cflags --libs', uselib_store='PANGOMM', mandatory=True)
354     conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True)
355
356     conf.check_cc(fragment="""
357                            #include <glib.h>
358                            int main() { g_format_size (1); }
359                            """, msg='Checking for g_format_size ()',
360                            uselib='GLIB',
361                            define_name='HAVE_G_FORMAT_SIZE',
362                            mandatory=False)
363
364     conf.find_program('msgfmt', var='MSGFMT')
365     
366     datadir = conf.env.DATADIR
367     if not datadir:
368         datadir = os.path.join(conf.env.PREFIX, 'share')
369     
370     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
371     conf.define('DATADIR', datadir)
372
373     conf.recurse('src')
374     if not conf.env.DISABLE_TESTS:
375         conf.recurse('test')
376
377 def build(bld):
378     create_version_cc(VERSION, bld.env.CXXFLAGS)
379
380     bld.recurse('src')
381     if not bld.env.DISABLE_TESTS:
382         bld.recurse('test')
383     if bld.env.TARGET_WINDOWS:
384         bld.recurse('platform/windows')
385     if bld.env.TARGET_LINUX:
386         bld.recurse('platform/linux')
387     if bld.env.TARGET_OSX:
388         bld.recurse('platform/osx')
389
390     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
391         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dcpomatic2.png' % r)
392
393     if not bld.env.TARGET_WINDOWS:
394         bld.install_files('${PREFIX}/share/dcpomatic2', 'icons/taskbar_icon.png')
395
396     bld.add_post_fun(post)
397
398 def git_revision():
399     if not os.path.exists('.git'):
400         return None
401
402     cmd = "LANG= git log --abbrev HEAD^..HEAD ."
403     output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
404     o = output[0].decode('utf-8')
405     return o.replace("commit ", "")[0:10]
406
407 def dist(ctx):
408     r = git_revision()
409     if r is not None:
410         f = open('.git_revision', 'w')
411         print >>f,r
412     f.close()
413
414     ctx.excl = """
415                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
416                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
417                GRSYMS GRTAGS GSYMS GTAGS
418                """
419
420
421 def create_version_cc(version, cxx_flags):
422     commit = git_revision()
423     if commit is None and os.path.exists('.git_revision'):
424         f = open('.git_revision', 'r')
425         commit = f.readline().strip()
426     
427     if commit is None:
428         commit = 'release'
429
430     try:
431         text =  '#include "version.h"\n'
432         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
433         text += 'char const * dcpomatic_version = \"%s\";\n' % version
434
435         t = ''
436         for f in cxx_flags:
437             f = f.replace('"', '\\"')
438             t += f + ' '
439         text += 'char const * dcpomatic_cxx_flags = \"%s\";\n' % t[:-1]
440
441         print('Writing version information to src/lib/version.cc')
442         o = open('src/lib/version.cc', 'w')
443         o.write(text)
444         o.close()
445     except IOError:
446         print('Could not open src/lib/version.cc for writing\n')
447         sys.exit(-1)
448     
449 def post(ctx):
450     if ctx.cmd == 'install':
451         ctx.exec_command('/sbin/ldconfig')
452
453 def pot(bld):
454     bld.recurse('src')
455
456 def pot_merge(bld):
457     bld.recurse('src')
458
459 def tags(bld):
460     os.system('etags src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc src/tools/*.h test/*.cc')