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 515B

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