More logging tweaks; allow log level to be specified on the command line; bump libdcp...
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.59beta1'
7
8 def options(opt):
9     opt.load('compiler_cxx')
10     opt.load('winres')
11
12     opt.add_option('--enable-debug', action='store_true', default = False, help = 'build with debugging information and without optimisation')
13     opt.add_option('--disable-gui', action='store_true', default = False, help = 'disable building of GUI tools')
14     opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
15
16 def configure(conf):
17     conf.load('compiler_cxx')
18     if conf.options.target_windows:
19         conf.load('winres')
20
21     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes'])
22
23     if conf.options.target_windows:
24         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H'])
25         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
26         print wxrc
27         conf.env.append_value('WINRCFLAGS', wxrc)
28         if conf.options.enable_debug:
29             conf.env.append_value('CXXFLAGS', ['-mconsole'])
30             conf.env.append_value('LINKFLAGS', ['-mconsole'])
31         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
32         boost_lib_suffix = '-mt'
33         boost_thread = 'boost_thread_win32-mt'
34     else:
35         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_POSIX')
36         boost_lib_suffix = ''
37         boost_thread = 'boost_thread'
38         conf.env.append_value('LINKFLAGS', '-pthread')
39
40     conf.env.TARGET_WINDOWS = conf.options.target_windows
41     conf.env.DISABLE_GUI = conf.options.disable_gui
42     conf.env.VERSION = VERSION
43
44     if conf.options.enable_debug:
45         conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG'])
46     else:
47         conf.env.append_value('CXXFLAGS', '-O2')
48
49     conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
50     conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
51     conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
52     conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
53     conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
54     conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = False)
55     conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
56     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
57     conf.check_cfg(package = 'libdcp', atleast_version = '0.33', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
58     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
59     conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
60     conf.check_cc(fragment  = """
61                               #include <stdio.h>\n
62                               #include <openjpeg.h>\n
63                               int main () {\n
64                               void* p = (void *) opj_image_create;\n
65                               return 0;\n
66                               }
67                               """, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
68
69     conf.check_cc(fragment  = """
70                               #include <libssh/libssh.h>\n
71                               int main () {\n
72                               ssh_session s = ssh_new ();\n
73                               return 0;\n
74                               }
75                               """, msg = 'Checking for library libssh', mandatory = False, lib = 'ssh', uselib_store = 'SSH')
76
77     conf.check_cxx(fragment = """
78                               #include <boost/thread.hpp>\n
79                               int main() { boost::thread t (); }\n
80                               """, msg = 'Checking for boost threading library',
81                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
82                               uselib_store = 'BOOST_THREAD')
83
84     conf.check_cxx(fragment = """
85                               #include <boost/filesystem.hpp>\n
86                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
87                               """, msg = 'Checking for boost filesystem library',
88                               libpath = '/usr/local/lib',
89                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
90                               uselib_store = 'BOOST_FILESYSTEM')
91
92     conf.check_cxx(fragment = """
93                               #include <boost/date_time.hpp>\n
94                               int main() { boost::gregorian::day_clock::local_day(); }\n
95                               """, msg = 'Checking for boost datetime library',
96                               libpath = '/usr/local/lib',
97                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
98                               uselib_store = 'BOOST_DATETIME')
99
100     conf.check_cxx(fragment = """
101                               #include <boost/signals2.hpp>\n
102                               int main() { boost::signals2::signal<void (int)> x; }\n
103                               """,
104                               msg = 'Checking for boost signals2 library',
105                               uselib_store = 'BOOST_SIGNALS2')
106
107     conf.check_cc(fragment = """
108                              #include <glib.h>
109                              int main() { g_format_size (1); }
110                              """, msg = 'Checking for g_format_size ()',
111                              uselib = 'GLIB',
112                              define_name = 'HAVE_G_FORMAT_SIZE',
113                              mandatory = False)
114
115     conf.recurse('src')
116     conf.recurse('test')
117
118 def build(bld):
119     create_version_cc(VERSION)
120
121     bld.recurse('src')
122     bld.recurse('test')
123     if bld.env.TARGET_WINDOWS:
124         bld.recurse('windows')
125
126     d = { 'PREFIX' : '${PREFIX' }
127
128     obj = bld(features = 'subst')
129     obj.source = 'dvdomatic.desktop.in'
130     obj.target = 'dvdomatic.desktop'
131     obj.dict = d
132
133     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
134     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
135         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
136
137     bld.add_post_fun(post)
138
139 def dist(ctx):
140     ctx.excl = 'TODO core *~ src/wx/*~ src/lib/*~ .waf* build .git deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html'
141
142 def create_version_cc(version):
143     if os.path.exists('.git'):
144         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
145         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
146         o = output[0].decode('utf-8')
147         commit = o.replace ("commit ", "")[0:10]
148     else:
149         commit = 'release'
150
151     try:
152         text =  '#include "version.h"\n'
153         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
154         text += 'char const * dvdomatic_version = \"%s\";\n' % version
155         print('Writing version information to src/lib/version.cc')
156         o = open('src/lib/version.cc', 'w')
157         o.write(text)
158         o.close()
159     except IOError:
160         print('Could not open src/lib/version.cc for writing\n')
161         sys.exit(-1)
162     
163 def post(ctx):
164     if ctx.cmd == 'install':
165         ctx.exec_command('/sbin/ldconfig')