X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=5cefa27940a7d8a173b9372bdbf712b56db3484a;hb=09d3fd999cd9dae6e5b9b3db69af3452ab0fadf2;hp=ba070dbc06b5a35f5639b24bd94500a92b034b87;hpb=57584c74b859cdedde01ae51954933ac673e09fd;p=libdcp.git diff --git a/wscript b/wscript index ba070dbc..5cefa279 100644 --- a/wscript +++ b/wscript @@ -1,5 +1,5 @@ # -# Copyright (C) 2012-2019 Carl Hetherington +# Copyright (C) 2012-2020 Carl Hetherington # # This file is part of libdcp. # @@ -56,6 +56,7 @@ def options(opt): opt.add_option('--enable-debug', action='store_true', default=False, help='build with debugging information and without optimisation') opt.add_option('--static', action='store_true', default=False, help='build libdcp statically, and link statically to openjpeg, cxml, asdcplib-carl') opt.add_option('--disable-tests', action='store_true', default=False, help='disable building of tests') + opt.add_option('--disable-benchmarks', action='store_true', default=False, help='disable building of benchmarks') opt.add_option('--disable-gcov', action='store_true', default=False, help='don''t use gcov in tests') opt.add_option('--disable-examples', action='store_true', default=False, help='disable building of examples') opt.add_option('--enable-openmp', action='store_true', default=False, help='enable use of OpenMP') @@ -78,6 +79,7 @@ def configure(conf): conf.env.TARGET_OSX = sys.platform == 'darwin' conf.env.ENABLE_DEBUG = conf.options.enable_debug conf.env.DISABLE_TESTS = conf.options.disable_tests + conf.env.DISABLE_BENCHMARKS = conf.options.disable_benchmarks conf.env.DISABLE_EXAMPLES = conf.options.disable_examples conf.env.STATIC = conf.options.static conf.env.API_VERSION = API_VERSION @@ -140,8 +142,7 @@ def configure(conf): conf.env.LIB_CXML = ['xml++-2.6', 'glibmm-2.4'] conf.env.STLIB_CXML = ['cxml'] conf.check_cfg(package='xerces-c', args='--cflags', uselib_store='XERCES', mandatory=True) - conf.env.STLIB_XERCES = ['xerces-c'] - conf.env.LIB_XERCES = ['icuuc', 'curl'] + conf.env.LIB_XERCES = ['xerces-c', 'icuuc', 'curl'] else: if conf.options.jpeg == 'oj2': conf.check_cfg(package='libopenjp2', args='--cflags --libs', atleast_version='2.1.0', uselib_store='OPENJPEG', mandatory=True) @@ -231,8 +232,22 @@ def build(bld): bld.recurse('test') if not bld.env.DISABLE_EXAMPLES: bld.recurse('examples') - - for i in ['SMPTE-429-7-2006-CPL.xsd', 'SMPTE-429-8-2006-PKL.xsd', 'SMPTE-429-9-2007-AM.xsd', 'xmldsig-core-schema.xsd', 'XMLSchema.dtd', 'XMLSchema.xsd', 'xml.xsd' ]: + if not bld.env.DISABLE_BENCHMARKS: + bld.recurse('benchmark') + + for i in ['SMPTE-429-7-2006-CPL.xsd', + 'SMPTE-429-8-2006-PKL.xsd', + 'SMPTE-429-9-2007-AM.xsd', + 'xmldsig-core-schema.xsd', + 'XMLSchema.dtd', + 'XMLSchema.xsd', + 'xml.xsd', + 'PROTO-ASDCP-CPL-20040511.xsd', + 'PROTO-ASDCP-PKL-20040311.xsd', + 'PROTO-ASDCP-AM-20040311.xsd', + 'Main-Stereo-Picture-CPL.xsd', + 'DCSubtitle.v1.mattsson.xsd', + 'DCDMSubtitle-2010.xsd' ]: bld.install_files('${PREFIX}/share/libdcp/xsd', os.path.join('xsd', i)) bld.add_post_fun(post)