diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | waf | bin | 89303 -> 89530 bytes | |||
-rw-r--r-- | wscript | 19 |
3 files changed, 19 insertions, 1 deletions
@@ -2,6 +2,7 @@ sord (UNRELEASED) unstable; urgency=low * Add function sord_contains for checking for a triple pattern * Fix Sord::Namespaces::qualify to no longer chop prefixes + * Add ability to build static library -- David Robillard <d@drobilla.net> (UNRELEASED) @@ -32,6 +32,8 @@ def options(opt): help="Build unit tests") opt.add_option('--dump', type='string', default='', dest='dump', help="Dump debugging output (iter, search, write, all)") + opt.add_option('--static', action='store_true', default=False, dest='static', + help="Build static library") def configure(conf): autowaf.configure(conf) @@ -50,6 +52,7 @@ def configure(conf): conf.env['BUILD_TESTS'] = Options.options.build_tests conf.env['BUILD_UTILS'] = True + conf.env['BUILD_STATIC'] = Options.options.static dump = Options.options.dump.split(',') all = 'all' in dump @@ -94,7 +97,7 @@ def build(bld): autowaf.build_pc(bld, 'SORD', SORD_VERSION, SORD_MAJOR_VERSION, 'SERD', {'SORD_MAJOR_VERSION' : SORD_MAJOR_VERSION}) - # Library + # Shared Library obj = bld(features = 'c cshlib', source = 'src/sord.c src/syntax.c', includes = ['.', './src'], @@ -109,6 +112,20 @@ def build(bld): '-DSORD_INTERNAL' ]) autowaf.use_lib(bld, obj, 'GLIB SERD') + # Static Library + if bld.env['BUILD_STATIC']: + obj = bld(features = 'c cstlib', + source = 'src/sord.c src/syntax.c', + includes = ['.', './src'], + export_includes = ['.'], + name = 'libsord_static', + target = 'sord-%s' % SORD_MAJOR_VERSION, + vnum = SORD_LIB_VERSION, + install_path = '${LIBDIR}', + libs = [ 'm' ], + cflags = [ '-DSORD_INTERNAL' ]) + autowaf.use_lib(bld, obj, 'GLIB SERD') + if bld.env['BUILD_TESTS']: test_cflags = [ '-fprofile-arcs', '-ftest-coverage' ] |