X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=936cf1ee63650a69da13b333152f1b978c128500;hb=09e611e69fe92baeb0b6c1b35bd8fe7032b77cf9;hp=cf03a8ee93cf2ea1d25cc279c833eb81252f06c4;hpb=608b303716f818772c726be6177c5b2d11fc629c;p=libsub.git diff --git a/wscript b/wscript index cf03a8e..936cf1e 100644 --- a/wscript +++ b/wscript @@ -3,7 +3,7 @@ import os from waflib import Context APPNAME = 'libsub' -VERSION = '1.1.10' +VERSION = '1.2.0devel' API_VERSION = '-1.0' def options(opt): @@ -29,6 +29,9 @@ def configure(conf): else: conf.env.append_value('CXXFLAGS', '-O3') + # Disable libxml++ deprecation warnings for now + conf.env.append_value('CXXFLAGS', ['-Wno-deprecated-declarations']) + conf.check_cfg(package='openssl', args='--cflags --libs', uselib_store='OPENSSL', mandatory=True) if conf.options.static: @@ -150,3 +153,6 @@ def create_version_cc(bld, version): def post(ctx): if ctx.cmd == 'install': ctx.exec_command('/sbin/ldconfig') + +def tags(bld): + os.system('etags src/*.cc src/*.h')