Allow for building in yajl with the module instead of linking a 'system' one

This commit is contained in:
R. Tyler Ballance 2009-07-11 18:14:33 -07:00
parent 2ed7c49da0
commit bbb556c649
2 changed files with 12 additions and 3 deletions

1
includes/yajl Symbolic link
View File

@ -0,0 +1 @@
../yajl/src/api

View File

@ -6,10 +6,18 @@ base_modules = [
'yajl.c',
'encoder.c',
'decoder.c',
'yajl/src/yajl_alloc.c',
'yajl/src/yajl_buf.c',
'yajl/src/yajl.c',
'yajl/src/yajl_encode.c',
'yajl/src/yajl_gen.c',
'yajl/src/yajl_lex.c',
'yajl/src/yajl_parser.c',
],
libraries=['yajl'],
extra_compile_args=['-Wall', '-Werror', '-I../src/api']),
]
include_dirs=['includes/'],
extra_compile_args=['-Wall', '-Werror']),
]
packages = ['yajl']