CMakeLists.txt 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. set(CMAKE_LEGACY_CYGWIN_WIN32 0)
  2. cmake_minimum_required(VERSION 3.0)
  3. project(cJSON
  4. VERSION 1.7.15
  5. LANGUAGES C)
  6. cmake_policy(SET CMP0054 NEW) # set CMP0054 policy
  7. include(GNUInstallDirs)
  8. set(CJSON_VERSION_SO 1)
  9. set(CJSON_UTILS_VERSION_SO 1)
  10. set(custom_compiler_flags)
  11. include(CheckCCompilerFlag)
  12. option(ENABLE_CUSTOM_COMPILER_FLAGS "Enables custom compiler flags" ON)
  13. if (ENABLE_CUSTOM_COMPILER_FLAGS)
  14. if (("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU"))
  15. list(APPEND custom_compiler_flags
  16. -std=c89
  17. -pedantic
  18. -Wall
  19. -Wextra
  20. -Werror
  21. -Wstrict-prototypes
  22. -Wwrite-strings
  23. -Wshadow
  24. -Winit-self
  25. -Wcast-align
  26. -Wformat=2
  27. -Wmissing-prototypes
  28. -Wstrict-overflow=2
  29. -Wcast-qual
  30. -Wundef
  31. -Wswitch-default
  32. -Wconversion
  33. -Wc++-compat
  34. -fstack-protector-strong
  35. -Wcomma
  36. -Wdouble-promotion
  37. -Wparentheses
  38. -Wformat-overflow
  39. -Wunused-macros
  40. -Wmissing-variable-declarations
  41. -Wused-but-marked-unused
  42. -Wswitch-enum
  43. )
  44. elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC")
  45. # Disable warning c4001 - nonstandard extension 'single line comment' was used
  46. # Define _CRT_SECURE_NO_WARNINGS to disable deprecation warnings for "insecure" C library functions
  47. list(APPEND custom_compiler_flags
  48. /GS
  49. /Za
  50. /sdl
  51. /W4
  52. /wd4001
  53. /D_CRT_SECURE_NO_WARNINGS
  54. )
  55. endif()
  56. endif()
  57. option(ENABLE_SANITIZERS "Enables AddressSanitizer and UndefinedBehaviorSanitizer." OFF)
  58. if (ENABLE_SANITIZERS)
  59. list(APPEND custom_compiler_flags
  60. -fno-omit-frame-pointer
  61. -fsanitize=address
  62. -fsanitize=undefined
  63. -fsanitize=float-cast-overflow
  64. -fsanitize-address-use-after-scope
  65. -fsanitize=integer
  66. -01
  67. -fno-sanitize-recover
  68. )
  69. endif()
  70. option(ENABLE_SAFE_STACK "Enables the SafeStack instrumentation pass by the Code Pointer Integrity Project" OFF)
  71. if (ENABLE_SAFE_STACK)
  72. if (ENABLE_SANITIZERS)
  73. message(FATAL_ERROR "ENABLE_SAFE_STACK cannot be used in combination with ENABLE_SANITIZERS")
  74. endif()
  75. list(APPEND custom_compiler_flags
  76. -fsanitize=safe-stack
  77. )
  78. endif()
  79. option(ENABLE_PUBLIC_SYMBOLS "Export library symbols." On)
  80. if (ENABLE_PUBLIC_SYMBOLS)
  81. list(APPEND custom_compiler_flags -fvisibility=hidden)
  82. add_definitions(-DCJSON_EXPORT_SYMBOLS -DCJSON_API_VISIBILITY)
  83. endif()
  84. option(ENABLE_HIDDEN_SYMBOLS "Hide library symbols." Off)
  85. if (ENABLE_HIDDEN_SYMBOLS)
  86. add_definitions(-DCJSON_HIDE_SYMBOLS -UCJSON_API_VISIBILITY)
  87. endif()
  88. # apply custom compiler flags
  89. foreach(compiler_flag ${custom_compiler_flags})
  90. #remove problematic characters
  91. string(REGEX REPLACE "[^a-zA-Z0-9]" "" current_variable ${compiler_flag})
  92. CHECK_C_COMPILER_FLAG(${compiler_flag} "FLAG_SUPPORTED_${current_variable}")
  93. if (FLAG_SUPPORTED_${current_variable})
  94. list(APPEND supported_compiler_flags)
  95. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${compiler_flag}")
  96. endif()
  97. endforeach()
  98. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${supported_compiler_flags}")
  99. option(BUILD_SHARED_LIBS "Build shared libraries" ON)
  100. option(ENABLE_TARGET_EXPORT "Enable exporting of CMake targets. Disable when it causes problems!" ON)
  101. #cJSON
  102. set(CJSON_LIB cjson)
  103. file(GLOB HEADERS cJSON.h)
  104. set(SOURCES cJSON.c)
  105. option(BUILD_SHARED_AND_STATIC_LIBS "Build both shared and static libraries" Off)
  106. option(CJSON_OVERRIDE_BUILD_SHARED_LIBS "Override BUILD_SHARED_LIBS with CJSON_BUILD_SHARED_LIBS" OFF)
  107. option(CJSON_BUILD_SHARED_LIBS "Overrides BUILD_SHARED_LIBS if CJSON_OVERRIDE_BUILD_SHARED_LIBS is enabled" ON)
  108. if ((CJSON_OVERRIDE_BUILD_SHARED_LIBS AND CJSON_BUILD_SHARED_LIBS) OR ((NOT CJSON_OVERRIDE_BUILD_SHARED_LIBS) AND BUILD_SHARED_LIBS))
  109. set(CJSON_LIBRARY_TYPE SHARED)
  110. else()
  111. set(CJSON_LIBRARY_TYPE STATIC)
  112. endif()
  113. if (NOT BUILD_SHARED_AND_STATIC_LIBS)
  114. add_library("${CJSON_LIB}" "${CJSON_LIBRARY_TYPE}" "${HEADERS}" "${SOURCES}")
  115. else()
  116. # See https://cmake.org/Wiki/CMake_FAQ#How_do_I_make_my_shared_and_static_libraries_have_the_same_root_name.2C_but_different_suffixes.3F
  117. add_library("${CJSON_LIB}" SHARED "${HEADERS}" "${SOURCES}")
  118. add_library("${CJSON_LIB}-static" STATIC "${HEADERS}" "${SOURCES}")
  119. set_target_properties("${CJSON_LIB}-static" PROPERTIES OUTPUT_NAME "${CJSON_LIB}")
  120. set_target_properties("${CJSON_LIB}-static" PROPERTIES PREFIX "lib")
  121. endif()
  122. if (NOT WIN32)
  123. target_link_libraries("${CJSON_LIB}" m)
  124. endif()
  125. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/library_config/libcjson.pc.in"
  126. "${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" @ONLY)
  127. install(FILES cJSON.h DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/cjson")
  128. install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig")
  129. install(TARGETS "${CJSON_LIB}"
  130. EXPORT "${CJSON_LIB}"
  131. ARCHIVE DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
  132. LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
  133. RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}"
  134. INCLUDES DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}"
  135. )
  136. if (BUILD_SHARED_AND_STATIC_LIBS)
  137. install(TARGETS "${CJSON_LIB}-static" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
  138. endif()
  139. if(ENABLE_TARGET_EXPORT)
  140. # export library information for CMake projects
  141. install(EXPORT "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
  142. endif()
  143. set_target_properties("${CJSON_LIB}"
  144. PROPERTIES
  145. SOVERSION "${CJSON_VERSION_SO}"
  146. VERSION "${PROJECT_VERSION}")
  147. #cJSON_Utils
  148. option(ENABLE_CJSON_UTILS "Enable building the cJSON_Utils library." OFF)
  149. if(ENABLE_CJSON_UTILS)
  150. set(CJSON_UTILS_LIB cjson_utils)
  151. file(GLOB HEADERS_UTILS cJSON_Utils.h)
  152. set(SOURCES_UTILS cJSON_Utils.c)
  153. if (NOT BUILD_SHARED_AND_STATIC_LIBS)
  154. add_library("${CJSON_UTILS_LIB}" "${CJSON_LIBRARY_TYPE}" "${HEADERS_UTILS}" "${SOURCES_UTILS}")
  155. target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
  156. else()
  157. add_library("${CJSON_UTILS_LIB}" SHARED "${HEADERS_UTILS}" "${SOURCES_UTILS}")
  158. target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
  159. add_library("${CJSON_UTILS_LIB}-static" STATIC "${HEADERS_UTILS}" "${SOURCES_UTILS}")
  160. target_link_libraries("${CJSON_UTILS_LIB}-static" "${CJSON_LIB}-static")
  161. set_target_properties("${CJSON_UTILS_LIB}-static" PROPERTIES OUTPUT_NAME "${CJSON_UTILS_LIB}")
  162. set_target_properties("${CJSON_UTILS_LIB}-static" PROPERTIES PREFIX "lib")
  163. endif()
  164. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/library_config/libcjson_utils.pc.in"
  165. "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" @ONLY)
  166. install(TARGETS "${CJSON_UTILS_LIB}"
  167. EXPORT "${CJSON_UTILS_LIB}"
  168. ARCHIVE DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
  169. LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
  170. RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}"
  171. INCLUDES DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}"
  172. )
  173. if (BUILD_SHARED_AND_STATIC_LIBS)
  174. install(TARGETS "${CJSON_UTILS_LIB}-static" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
  175. endif()
  176. install(FILES cJSON_Utils.h DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/cjson")
  177. install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig")
  178. if(ENABLE_TARGET_EXPORT)
  179. # export library information for CMake projects
  180. install(EXPORT "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
  181. endif()
  182. set_target_properties("${CJSON_UTILS_LIB}"
  183. PROPERTIES
  184. SOVERSION "${CJSON_UTILS_VERSION_SO}"
  185. VERSION "${PROJECT_VERSION}")
  186. endif()
  187. # create the other package config files
  188. configure_file(
  189. "${CMAKE_CURRENT_SOURCE_DIR}/library_config/cJSONConfig.cmake.in"
  190. ${PROJECT_BINARY_DIR}/cJSONConfig.cmake @ONLY)
  191. configure_file(
  192. "${CMAKE_CURRENT_SOURCE_DIR}/library_config/cJSONConfigVersion.cmake.in"
  193. ${PROJECT_BINARY_DIR}/cJSONConfigVersion.cmake @ONLY)
  194. if(ENABLE_TARGET_EXPORT)
  195. # Install package config files
  196. install(FILES ${PROJECT_BINARY_DIR}/cJSONConfig.cmake
  197. ${PROJECT_BINARY_DIR}/cJSONConfigVersion.cmake
  198. DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
  199. endif()
  200. option(ENABLE_CJSON_TEST "Enable building cJSON test" ON)
  201. if(ENABLE_CJSON_TEST)
  202. enable_testing()
  203. set(TEST_CJSON cJSON_test)
  204. add_executable("${TEST_CJSON}" test.c)
  205. target_link_libraries("${TEST_CJSON}" "${CJSON_LIB}")
  206. add_test(NAME ${TEST_CJSON} COMMAND "${CMAKE_CURRENT_BINARY_DIR}/${TEST_CJSON}")
  207. # Disable -fsanitize=float-divide-by-zero for cJSON_test
  208. if (FLAG_SUPPORTED_fsanitizefloatdividebyzero)
  209. if ("${CMAKE_VERSION}" VERSION_LESS "2.8.12")
  210. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-sanitize=float-divide-by-zero")
  211. else()
  212. target_compile_options(${TEST_CJSON} PRIVATE "-fno-sanitize=float-divide-by-zero")
  213. endif()
  214. endif()
  215. #"check" target that automatically builds everything and runs the tests
  216. add_custom_target(check
  217. COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure
  218. DEPENDS ${TEST_CJSON})
  219. endif()
  220. #Create the uninstall target
  221. option(ENABLE_CJSON_UNINSTALL "Enable creating uninstall target" ON)
  222. if(ENABLE_CJSON_UNINSTALL)
  223. add_custom_target(uninstall "${CMAKE_COMMAND}" -P
  224. "${PROJECT_SOURCE_DIR}/library_config/uninstall.cmake")
  225. endif()
  226. # Enable the use of locales
  227. option(ENABLE_LOCALES "Enable the use of locales" ON)
  228. if(ENABLE_LOCALES)
  229. add_definitions(-DENABLE_LOCALES)
  230. endif()
  231. add_subdirectory(tests)
  232. add_subdirectory(fuzzing)