2020-04-16 16:57:53 +08:00
|
|
|
set_property(SOURCE PROPERTY C_STANDARD 99)
|
|
|
|
|
2020-04-18 20:19:43 +08:00
|
|
|
add_library(jansson STATIC
|
2020-04-16 16:57:53 +08:00
|
|
|
jansson/dump.c
|
|
|
|
jansson/error.c
|
|
|
|
jansson/hashtable.c
|
|
|
|
jansson/hashtable_seed.c
|
|
|
|
jansson/load.c
|
|
|
|
jansson/memory.c
|
|
|
|
jansson/pack_unpack.c
|
|
|
|
jansson/strbuffer.c
|
|
|
|
jansson/strconv.c
|
|
|
|
jansson/utf.c
|
|
|
|
jansson/path.c
|
|
|
|
jansson/value.c
|
|
|
|
)
|
2020-04-18 19:50:53 +08:00
|
|
|
|
|
|
|
target_compile_definitions(jansson PRIVATE HAVE_STDINT_H)
|
2020-04-18 21:09:35 +08:00
|
|
|
target_include_directories(jansson INTERFACE jansson)
|
2020-04-18 23:37:11 +08:00
|
|
|
target_compile_options(jansson PRIVATE -Wall -Werror -Wno-unused-function -O3)
|