X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=inline;f=cscript;h=9b8ba84f7301deea33082cbf5c4807e0a90dc9f2;hb=bc7089956cefc9f8528918f8a5d48174ab680f13;hp=5413fdbc4ca6bf61b745d1bf5d8e5f62322c6a52;hpb=c2bac22380bea453665a24c6f39200a977771daf;p=libdcp.git diff --git a/cscript b/cscript index 5413fdbc..9b8ba84f 100644 --- a/cscript +++ b/cscript @@ -1,17 +1,33 @@ import os -def build(env, target): - cmd = './waf configure --prefix=%s' % env.work_dir_cscript() +def dependencies(target): + return (('libcxml', 'v0.15.1'), ('openjpeg2-cdist', '94bdab1'), ('asdcplib-cth', 'v0.1.0')) + +def build(target, options): + cmd = './waf configure --disable-examples --prefix=%s' % target.directory if target.platform == 'linux': - cmd += ' --static-libdcp --static-openjpeg' + cmd += ' --static' + if target.distro == 'centos': + cmd += ' --disable-tests' + if (target.distro == 'debian' and target.version == 'unstable' or target.distro == 'fedora' and target.version == '23'): + target.append_with_space('CXXFLAGS', '-std=c++11') elif target.platform == 'windows': - cmd += ' --target-windows' + cmd += ' --target-windows --disable-gcov' elif target.platform == 'osx': - cmd += ' --osx' - env.command(cmd) - env.command('./waf build install') + cmd += ' --disable-tests' + + if target.debug: + cmd += ' --enable-debug' -def make_doxygen(env): + target.command(cmd) + target.command('./waf build install') + +def make_doxygen(target): os.makedirs('build/doc') - env.command('doxygen') + target.command('doxygen') return os.path.abspath('build/doc/html') + +def test(target): + if target.platform != 'windows': + target.set('LC_ALL', 'C') + target.command('run/tests')