diff options
Diffstat (limited to '')
-rw-r--r-- | contrib/libucl/CMakeLists.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/libucl/CMakeLists.txt b/contrib/libucl/CMakeLists.txt new file mode 100644 index 0000000..eb78701 --- /dev/null +++ b/contrib/libucl/CMakeLists.txt @@ -0,0 +1,19 @@ +SET(UCLSRC ucl_util.c + ucl_parser.c + ucl_emitter.c + ucl_emitter_streamline.c + ucl_hash.c + ucl_schema.c + lua_ucl.c + ucl_msgpack.c + ucl_sexp.c) + + +SET (LIB_TYPE STATIC) +ADD_LIBRARY(ucl ${LIB_TYPE} ${UCLSRC}) + +IF(ENABLE_URL_SIGN MATCHES "ON") + IF(OPENSSL_FOUND) + TARGET_LINK_LIBRARIES(ucl ${OPENSSL_LIBRARIES}) + ENDIF(OPENSSL_FOUND) +ENDIF(ENABLE_URL_SIGN MATCHES "ON") |