Merge master.
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dcpomatic'
6 VERSION = '1.00pre'
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     opt.add_option('--static', action='store_true', default=False, help='build statically, and link statically to libdcp and FFmpeg')
16     opt.add_option('--magickpp-config', action='store', default='Magick++-config', help='path to Magick++-config')
17     opt.add_option('--wx-config', action='store', default='wx-config', help='path to wx-config')
18
19 def configure(conf):
20     conf.load('compiler_cxx')
21     if conf.options.target_windows:
22         conf.load('winres')
23
24     conf.env.TARGET_WINDOWS = conf.options.target_windows
25     conf.env.DISABLE_GUI = conf.options.disable_gui
26     conf.env.STATIC = conf.options.static
27     conf.env.VERSION = VERSION
28     conf.env.TARGET_OSX = sys.platform == 'darwin'
29     conf.env.TARGET_LINUX = not conf.env.TARGET_WINDOWS and not conf.env.TARGET_OSX
30
31     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-D__STDC_LIMIT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing',
32                                        '-Wall', '-Wno-attributes', '-Wextra'])
33
34     if conf.env.TARGET_WINDOWS:
35         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H', '-DUNICODE'])
36         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
37         conf.env.append_value('WINRCFLAGS', wxrc)
38         if conf.options.enable_debug:
39             conf.env.append_value('CXXFLAGS', ['-mconsole'])
40             conf.env.append_value('LINKFLAGS', ['-mconsole'])
41         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
42         conf.check(lib = 'bfd', uselib_store = 'BFD', msg = "Checking for library bfd")
43         conf.check(lib = 'dbghelp', uselib_store = 'DBGHELP', msg = "Checking for library dbghelp")
44         conf.check(lib = 'iberty', uselib_store = 'IBERTY', msg = "Checking for library iberty")
45         boost_lib_suffix = '-mt'
46         boost_thread = 'boost_thread_win32-mt'
47     else:
48         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
49         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['PREFIX'])
50         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dcpomatic"' % conf.env['PREFIX'])
51         boost_lib_suffix = ''
52         boost_thread = 'boost_thread'
53         conf.env.append_value('LINKFLAGS', '-pthread')
54
55     if conf.env.TARGET_LINUX:
56         # libxml2 seems to be linked against this on Ubuntu but it doesn't mention it in its .pc file
57         conf.env.append_value('LIB', 'lzma')
58         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_LINUX')
59
60     if conf.env.TARGET_OSX:
61         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_OSX')
62
63     if conf.options.enable_debug:
64         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])
65     else:
66         conf.env.append_value('CXXFLAGS', '-O2')
67
68     if not conf.options.static:
69         conf.check_cfg(package = 'libdcp', atleast_version = '0.52', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
70         conf.check_cfg(package = 'libcxml', atleast_version = '0.01', args = '--cflags --libs', uselib_store = 'CXML', mandatory = True)
71         conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
72         conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
73         conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
74         conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
75         conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
76         conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = True)
77         conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
78     else:
79         # This is hackio grotesquio for static builds (ie for .deb packages).  We need to link some things
80         # statically and some dynamically, or things get horribly confused and the dynamic linker (I think)
81         # crashes horribly.  These calls do what the check_cfg calls would have done, but specify the
82         # different bits as static or dynamic as required.  It'll break if you look at it funny, but
83         # I think anyone else who builds would do so dynamically.
84         conf.env.HAVE_DCP = 1
85         conf.env.STLIB_DCP = ['dcp', 'asdcp-libdcp', 'kumu-libdcp']
86         conf.env.LIB_DCP = ['glibmm-2.4', 'xml++-2.6', 'ssl', 'crypto', 'bz2']
87         conf.env.HAVE_CXML = 1
88         conf.env.STLIB_CXML = ['cxml']
89         conf.check_cfg(package = 'libxml++-2.6', args = '--cflags --libs', uselib_store = 'XML++', mandatory = True)
90         conf.env.HAVE_AVFORMAT = 1
91         conf.env.STLIB_AVFORMAT = ['avformat']
92         conf.env.HAVE_AVFILTER = 1
93         conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
94         conf.env.HAVE_AVCODEC = 1
95         conf.env.STLIB_AVCODEC = ['avcodec']
96         conf.env.LIB_AVCODEC = ['z']
97         conf.env.HAVE_AVUTIL = 1
98         conf.env.STLIB_AVUTIL = ['avutil']
99         conf.env.HAVE_SWSCALE = 1
100         conf.env.STLIB_SWSCALE = ['swscale']
101         conf.env.HAVE_POSTPROC = 1
102         conf.env.STLIB_POSTPROC = ['postproc']
103         conf.env.HAVE_SWRESAMPLE = 1
104         conv.env.STLIB_SWRESAMPLE = ['swresample']
105
106     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
107     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
108
109     if conf.env.TARGET_LINUX:
110         conf.check_cfg(package='liblzma', args='--cflags --libs', uselib_store='LZMA', mandatory=True)
111
112     conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
113
114     if conf.options.static:
115         conf.check_cc(fragment = """
116                         #include <stdio.h>\n
117                         #include <openjpeg.h>\n
118                         int main () {\n
119                         void* p = (void *) opj_image_create;\n
120                         return 0;\n
121                         }
122                         """, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
123     else:
124         # Only 1.5.0 and 1.5.1 have been tested.
125         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', atleast_version = '1.5.0', uselib_store = 'OPENJPEG', mandatory = True)
126         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', max_version = '1.5.1', mandatory = True)
127
128     conf.check_cxx(fragment = """
129                               #include <boost/version.hpp>\n
130                               #if BOOST_VERSION < 104500\n
131                               #error boost too old\n
132                               #endif\n
133                               int main(void) { return 0; }\n
134                               """,
135                    mandatory = True,
136                    msg = 'Checking for boost library >= 1.45',
137                    okmsg = 'yes',
138                    errmsg = 'too old\nPlease install boost version 1.45 or higher.')
139
140     conf.check_cc(fragment  = """
141                               #include <libssh/libssh.h>\n
142                               int main () {\n
143                               ssh_session s = ssh_new ();\n
144                               return 0;\n
145                               }
146                               """, msg = 'Checking for library libssh', mandatory = True, lib = 'ssh', uselib_store = 'SSH')
147
148     conf.check_cxx(fragment = """
149                               #include <boost/thread.hpp>\n
150                               int main() { boost::thread t (); }\n
151                               """, msg = 'Checking for boost threading library',
152                               libpath = '/usr/local/lib',
153                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
154                               uselib_store = 'BOOST_THREAD')
155
156     conf.check_cxx(fragment = """
157                               #include <boost/filesystem.hpp>\n
158                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
159                               """, msg = 'Checking for boost filesystem library',
160                               libpath = '/usr/local/lib',
161                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
162                               uselib_store = 'BOOST_FILESYSTEM')
163
164     conf.check_cxx(fragment = """
165                               #include <boost/date_time.hpp>\n
166                               int main() { boost::gregorian::day_clock::local_day(); }\n
167                               """, msg = 'Checking for boost datetime library',
168                               libpath = '/usr/local/lib',
169                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
170                               uselib_store = 'BOOST_DATETIME')
171
172     conf.check_cxx(fragment = """
173                               #include <boost/signals2.hpp>\n
174                               int main() { boost::signals2::signal<void (int)> x; }\n
175                               """,
176                               msg = 'Checking for boost signals2 library',
177                               uselib_store = 'BOOST_SIGNALS2')
178
179     conf.check_cc(fragment = """
180                              #include <glib.h>
181                              int main() { g_format_size (1); }
182                              """, msg = 'Checking for g_format_size ()',
183                              uselib = 'GLIB',
184                              define_name = 'HAVE_G_FORMAT_SIZE',
185                              mandatory = False)
186
187     conf.find_program('msgfmt', var='MSGFMT')
188     
189     datadir = conf.env.DATADIR
190     if not datadir:
191         datadir = os.path.join(conf.env.PREFIX, 'share')
192     
193     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
194     conf.define('DATADIR', datadir)
195
196     conf.recurse('src')
197     conf.recurse('test')
198
199 def build(bld):
200     create_version_cc(VERSION)
201
202     bld.recurse('src')
203     bld.recurse('test')
204     if bld.env.TARGET_WINDOWS:
205         bld.recurse('platform/windows')
206     if bld.env.TARGET_LINUX:
207         bld.recurse('platform/linux')
208     if bld.env.TARGET_OSX:
209         bld.recurse('platform/osx')
210
211     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
212         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dcpomatic.png' % r)
213
214     if not bld.env.TARGET_WINDOWS:
215         bld.install_files('${PREFIX}/share/dcpomatic', 'icons/taskbar_icon.png')
216
217     bld.add_post_fun(post)
218
219 def dist(ctx):
220     ctx.excl = """
221                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
222                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
223                GRSYMS GRTAGS GSYMS GTAGS
224                """
225
226 def create_version_cc(version):
227     if os.path.exists('.git'):
228         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
229         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
230         o = output[0].decode('utf-8')
231         commit = o.replace ("commit ", "")[0:10]
232     else:
233         commit = 'release'
234
235     try:
236         text =  '#include "version.h"\n'
237         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
238         text += 'char const * dcpomatic_version = \"%s\";\n' % version
239         print('Writing version information to src/lib/version.cc')
240         o = open('src/lib/version.cc', 'w')
241         o.write(text)
242         o.close()
243     except IOError:
244         print('Could not open src/lib/version.cc for writing\n')
245         sys.exit(-1)
246     
247 def post(ctx):
248     if ctx.cmd == 'install':
249         ctx.exec_command('/sbin/ldconfig')
250
251 def pot(bld):
252     bld.recurse('src')
253
254 def pot_merge(bld):
255     bld.recurse('src')