Bump version.
[libdcp.git] / wscript
1 import subprocess
2 import os
3
4 APPNAME = 'libdcp'
5 VERSION = '0.08pre'
6
7 def options(opt):
8     opt.load('compiler_cxx')
9     opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
10     opt.add_option('--enable-debug', action='store_true', default = False, help = 'build with debugging information and without optimisation')
11
12 def configure(conf):
13     conf.load('compiler_cxx')
14     conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-Wno-unused-result', '-O2', '-D_FILE_OFFSET_BITS=64'])
15     conf.env.append_value('CXXFLAGS', ['-DLIBDCP_VERSION="%s"' % VERSION])
16
17     if conf.options.target_windows:
18         conf.env.append_value('CXXFLAGS', '-DLIBDCP_WINDOWS')
19     else:
20         conf.env.append_value('CXXFLAGS', '-DLIBDCP_POSIX')
21
22     conf.check_cfg(package = 'openssl', args = '--cflags --libs', uselib_store = 'OPENSSL', mandatory = True)
23     conf.check_cfg(package = 'sigc++-2.0', args = '--cflags --libs', uselib_store = 'SIGC++', mandatory = True)
24     conf.check_cfg(package = 'libxml++-2.6', args = '--cflags --libs', uselib_store = 'LIBXML++', mandatory = True)
25
26     if conf.options.target_windows:
27         boost_lib_suffix = '-mt'
28     else:
29         boost_lib_suffix = ''
30
31     if conf.options.enable_debug:
32         conf.env.append_value('CXXFLAGS', '-g')
33     else:
34         conf.env.append_value('CXXFLAGS', '-O3')
35
36     conf.check_cxx(fragment = """
37                               #include <boost/filesystem.hpp>\n
38                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
39                               """,
40                    msg = 'Checking for boost filesystem library',
41                    libpath = '/usr/local/lib',
42                    lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
43                    uselib_store = 'BOOST_FILESYSTEM')
44
45     conf.recurse('test')
46     conf.recurse('asdcplib')
47
48 def build(bld):
49     create_version_cc(VERSION)
50
51     bld(source = 'libdcp.pc.in',
52         version = VERSION,
53         includedir = '%s/include' % bld.env.PREFIX,
54         libs = "-L${libdir} -ldcp -lkumu-libdcp -lasdcp-libdcp",
55         install_path = '${LIBDIR}/pkgconfig')
56
57     bld.recurse('src')
58     bld.recurse('tools')
59     bld.recurse('test')
60     bld.recurse('asdcplib')
61
62 def dist(ctx):
63     ctx.excl = 'TODO core *~ .git build .waf* .lock* doc/*~ src/*~ test/ref/*~'
64
65 def create_version_cc(version):
66     if os.path.exists('.git'):
67         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
68         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
69         o = output[0].decode('utf-8')
70         commit = o.replace ("commit ", "")[0:10]
71     else:
72         commit = "release"
73
74     try:
75         text =  '#include "version.h"\n'
76         text += 'char const * libdcp::git_commit = \"%s\";\n' % commit
77         text += 'char const * libdcp::version = \"%s\";\n' % version
78         print('Writing version information to src/version.cc')
79         o = open('src/version.cc', 'w')
80         o.write(text)
81         o.close()
82     except IOError:
83         print('Could not open src/version.cc for writing\n')
84         sys.exit(-1)