diff options
author | David Robillard <d@drobilla.net> | 2011-01-20 07:31:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-20 07:31:58 +0000 |
commit | 0a62fc5f6aafd3e3f67d861634014d7e894c7bfd (patch) | |
tree | 570127d89143a64009bb753b2b6550507ae09cfa /wscript | |
parent | fc2fe593097a523919ee71742081cbc6f3fc4c2c (diff) | |
download | serd-0a62fc5f6aafd3e3f67d861634014d7e894c7bfd.tar.gz serd-0a62fc5f6aafd3e3f67d861634014d7e894c7bfd.tar.bz2 serd-0a62fc5f6aafd3e3f67d861634014d7e894c7bfd.zip |
Rework character reading functions to support reading multi-byte characters (take a string dest parameter instead of returning uchar).
Escape ntriples output.
Pass all good read tests with output verification.
git-svn-id: http://svn.drobilla.net/serd/trunk@8 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -54,7 +54,13 @@ def build(bld): # Pkgconfig file autowaf.build_pc(bld, 'SERD', SERD_VERSION, ['REDLAND']) - lib_source = 'src/reader.c src/namespaces.c src/uri.c' + lib_source = ''' + src/namespaces.c + src/reader.c + src/string.c + src/uri.c + src/write.c + ''' # Library obj = bld(features = 'c cshlib') |