You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 557B

1234567891011121314151617181920
  1. SET(UCLSRC ucl_util.c
  2. ucl_parser.c
  3. ucl_emitter.c
  4. ucl_emitter_streamline.c
  5. ucl_emitter_utils.c
  6. ucl_hash.c
  7. ucl_schema.c
  8. lua_ucl.c
  9. ucl_msgpack.c
  10. ucl_sexp.c)
  11. SET (LIB_TYPE STATIC)
  12. ADD_LIBRARY(ucl ${LIB_TYPE} ${UCLSRC})
  13. IF(ENABLE_URL_SIGN MATCHES "ON")
  14. IF(OPENSSL_FOUND)
  15. TARGET_LINK_LIBRARIES(ucl ${OPENSSL_LIBRARIES})
  16. ENDIF(OPENSSL_FOUND)
  17. ENDIF(ENABLE_URL_SIGN MATCHES "ON")