diff options
author | David Robillard <d@drobilla.net> | 2012-03-18 16:33:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-18 16:33:11 +0000 |
commit | 50733eb0168565dd75f01cbdb9d9eb7a6c7f06ac (patch) | |
tree | 673617f815fd19936603b7d0a5e3dde9c3ebab9b /wscript | |
parent | bdc71a0f45891d4dd20b4f56e05da056cd56eeab (diff) | |
download | sord-50733eb0168565dd75f01cbdb9d9eb7a6c7f06ac.tar.gz sord-50733eb0168565dd75f01cbdb9d9eb7a6c7f06ac.tar.bz2 sord-50733eb0168565dd75f01cbdb9d9eb7a6c7f06ac.zip |
Add SordInserter for writing to a model via Serd sink functions.
git-svn-id: http://svn.drobilla.net/sord/trunk@209 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ from waflib.extras import autowaf as autowaf import waflib.Logs as Logs, waflib.Options as Options # Version of this package (even if built as a child) -SORD_VERSION = '0.6.1' +SORD_VERSION = '0.7.0' SORD_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) @@ -50,7 +50,7 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-std=c99') autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD', - atleast_version='0.8.0', mandatory=True) + atleast_version='0.14.0', mandatory=True) conf.env['BUILD_TESTS'] = Options.options.build_tests conf.env['BUILD_UTILS'] = True @@ -278,7 +278,7 @@ def test(ctx): 'sordi_static %s/tests/UTF-8.ttl > %s' % (srcdir, nul), 'sordi_static -v > %s' % nul, 'sordi_static -h > %s' % nul, - 'sordi_static -s "<foo> a <#Thingie> ." > %s' % nul, + 'sordi_static -s "<foo> a <#Thingie> ." file:///test > %s' % nul, 'sordi_static %s > %s' % (nul, nul)], 0, name='sordi-cmd-good') |