Tweak windows building.
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.30pre'
7
8 def options(opt):
9     opt.load('compiler_cxx')
10     opt.load('winres')
11     opt.add_option('--debug-hash', action='store_true', default = False, help = 'print hashes of data at various points')
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('--disable-player', action='store_true', default = False, help = 'disable building of the player components')
15     opt.add_option('--ffmpeg-083', action='store_true', default = False, help = 'Use FFmpeg version in Ubuntu 12.04')
16     opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
17
18 def configure(conf):
19     conf.load('compiler_cxx')
20     conf.load('winres')
21
22     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes'])
23     conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_VERSION="%s"' % VERSION])
24
25     if conf.options.target_windows:
26         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS'])
27         conf.env.append_value('LINKFLAGS', '-mwindows')
28         conf.options.disable_player = True
29         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
30         boost_lib_suffix = '-mt'
31         boost_thread = 'boost_thread_win32-mt'
32     else:
33         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_POSIX')
34         boost_lib_suffix = ''
35         boost_thread = 'boost_thread'
36
37     conf.env.DEBUG_HASH = conf.options.debug_hash
38     conf.env.TARGET_WINDOWS = conf.options.target_windows
39     conf.env.DISABLE_GUI = conf.options.disable_gui
40     conf.env.DISABLE_PLAYER = conf.options.disable_player
41     conf.env.VERSION = VERSION
42
43     if conf.options.disable_player:
44         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_DISABLE_PLAYER')
45
46     if conf.options.enable_debug:
47         conf.env.append_value('CXXFLAGS', '-g')
48     else:
49         conf.env.append_value('CXXFLAGS', '-O3')
50
51     if conf.options.ffmpeg_083:
52         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_FFMPEG_0_8_3')
53
54     conf.check_cfg(package = 'sigc++-2.0', args = '--cflags --libs', uselib_store = 'SIGC++', mandatory = True)
55     conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
56     conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
57     conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
58     conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
59     conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
60     conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
61     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
62     conf.check_cfg(package = 'libdcp', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
63     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
64     conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
65     conf.check_cc(msg = 'Checking for library libtiff', function_name = 'TIFFOpen', header_name = 'tiffio.h', lib = 'tiff', uselib_store = 'TIFF')
66     conf.check_cc(fragment  = """
67                               #include <stdio.h>\n
68                               #include <openjpeg.h>\n
69                               int main () {\n
70                               void* p = (void *) opj_image_create;\n
71                               return 0;\n
72                               }
73                               """, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
74
75     conf.check_cc(fragment  = """
76                               #include <libssh/libssh.h>\n
77                               int main () {\n
78                               ssh_session s = ssh_new ();\n
79                               return 0;\n
80                               }
81                               """, msg = 'Checking for library libssh', mandatory = False, lib = 'ssh', uselib_store = 'SSH')
82
83     conf.check_cxx(fragment = """
84                               #include <boost/thread.hpp>\n
85                               int main() { boost::thread t (); }\n
86                               """, msg = 'Checking for boost threading library',
87                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
88                               uselib_store = 'BOOST_THREAD')
89
90     conf.check_cxx(fragment = """
91                               #include <boost/filesystem.hpp>\n
92                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
93                               """, msg = 'Checking for boost filesystem library',
94                               libpath = '/usr/local/lib',
95                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
96                               uselib_store = 'BOOST_FILESYSTEM')
97
98     conf.check_cc(fragment = """
99                              #include <glib.h>
100                              int main() { g_format_size (1); }
101                              """, msg = 'Checking for g_format_size ()',
102                              uselib = 'GLIB',
103                              define_name = 'HAVE_G_FORMAT_SIZE',
104                              mandatory = False)
105
106     conf.recurse('src')
107     conf.recurse('test')
108
109 def build(bld):
110     create_version_cc(VERSION)
111
112     bld.recurse('src')
113     bld.recurse('test')
114     if bld.env.TARGET_WINDOWS:
115         bld.recurse('windows')
116
117     d = { 'PREFIX' : '${PREFIX' }
118
119     obj = bld(features = 'subst')
120     obj.source = 'dvdomatic.desktop.in'
121     obj.target = 'dvdomatic.desktop'
122     obj.dict = d
123
124     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
125     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
126         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
127
128 def dist(ctx):
129     ctx.excl = 'TODO core *~ src/gtk/*~ src/lib/*~ .waf* build .git'
130
131 def create_version_cc(version):
132     if os.path.exists('.git'):
133         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
134         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
135         o = output[0].decode('utf-8')
136         commit = o.replace ("commit ", "")[0:10]
137     else:
138         commit = 'release'
139
140     try:
141         text =  '#include "version.h"\n'
142         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
143         text += 'char const * dvdomatic_version = \"%s\";\n' % version
144         print('Writing version information to src/lib/version.cc')
145         o = open('src/lib/version.cc', 'w')
146         o.write(text)
147         o.close()
148     except IOError:
149         print('Could not open src/lib/version.cc for writing\n')
150         sys.exit(-1)
151