CMakeLists.txt 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. set(CMAKE_LEGACY_CYGWIN_WIN32 0)
  2. cmake_minimum_required(VERSION 2.8.5)
  3. project(cJSON C)
  4. include(GNUInstallDirs)
  5. set(PROJECT_VERSION_MAJOR 1)
  6. set(PROJECT_VERSION_MINOR 7)
  7. set(PROJECT_VERSION_PATCH 7)
  8. set(CJSON_VERSION_SO 1)
  9. set(CJSON_UTILS_VERSION_SO 1)
  10. set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
  11. set(custom_compiler_flags)
  12. include(CheckCCompilerFlag)
  13. option(ENABLE_CUSTOM_COMPILER_FLAGS "Enables custom compiler flags" ON)
  14. if (ENABLE_CUSTOM_COMPILER_FLAGS)
  15. if (("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU"))
  16. list(APPEND custom_compiler_flags
  17. -std=c89
  18. -pedantic
  19. -Wall
  20. -Wextra
  21. -Werror
  22. -Wstrict-prototypes
  23. -Wwrite-strings
  24. -Wshadow
  25. -Winit-self
  26. -Wcast-align
  27. -Wformat=2
  28. -Wmissing-prototypes
  29. -Wstrict-overflow=2
  30. -Wcast-qual
  31. -Wundef
  32. -Wswitch-default
  33. -Wconversion
  34. -Wc++-compat
  35. -fstack-protector-strong
  36. -Wcomma
  37. -Wdouble-promotion
  38. -Wparentheses
  39. -Wformat-overflow
  40. -Wunused-macros
  41. -Wmissing-variable-declarations
  42. -Wused-but-marked-unused
  43. -Wswitch-enum
  44. )
  45. elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC")
  46. list(APPEND custom_compiler_flags
  47. /GS
  48. /Za
  49. /sdl
  50. /W4
  51. /wd4001
  52. /D_CRT_SECURE_NO_WARNINGS
  53. )
  54. endif()
  55. endif()
  56. option(ENABLE_SANITIZERS "Enables AddressSanitizer and UndefinedBehaviorSanitizer." OFF)
  57. if (ENABLE_SANITIZERS)
  58. list(APPEND custom_compiler_flags
  59. -fno-omit-frame-pointer
  60. -fsanitize=address
  61. -fsanitize=undefined
  62. -fsanitize=float-divide-by-zero
  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}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}" EXPORT "${CJSON_LIB}")
  130. if (BUILD_SHARED_AND_STATIC_LIBS)
  131. install(TARGETS "${CJSON_LIB}-static" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
  132. endif()
  133. if(ENABLE_TARGET_EXPORT)
  134. # export library information for CMake projects
  135. install(EXPORT "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
  136. endif()
  137. set_target_properties("${CJSON_LIB}"
  138. PROPERTIES
  139. SOVERSION "${CJSON_VERSION_SO}"
  140. VERSION "${PROJECT_VERSION}")
  141. #cJSON_Utils
  142. option(ENABLE_CJSON_UTILS "Enable building the cJSON_Utils library." OFF)
  143. if(ENABLE_CJSON_UTILS)
  144. set(CJSON_UTILS_LIB cjson_utils)
  145. file(GLOB HEADERS_UTILS cJSON_Utils.h)
  146. set(SOURCES_UTILS cJSON_Utils.c)
  147. if (NOT BUILD_SHARED_AND_STATIC_LIBS)
  148. add_library("${CJSON_UTILS_LIB}" "${CJSON_LIBRARY_TYPE}" "${HEADERS_UTILS}" "${SOURCES_UTILS}")
  149. target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
  150. else()
  151. add_library("${CJSON_UTILS_LIB}" SHARED "${HEADERS_UTILS}" "${SOURCES_UTILS}")
  152. target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
  153. add_library("${CJSON_UTILS_LIB}-static" STATIC "${HEADERS_UTILS}" "${SOURCES_UTILS}")
  154. target_link_libraries("${CJSON_UTILS_LIB}-static" "${CJSON_LIB}-static")
  155. set_target_properties("${CJSON_UTILS_LIB}-static" PROPERTIES OUTPUT_NAME "${CJSON_UTILS_LIB}")
  156. set_target_properties("${CJSON_UTILS_LIB}-static" PROPERTIES PREFIX "lib")
  157. endif()
  158. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/library_config/libcjson_utils.pc.in"
  159. "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" @ONLY)
  160. install(TARGETS "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}" EXPORT "${CJSON_UTILS_LIB}")
  161. if (BUILD_SHARED_AND_STATIC_LIBS)
  162. install(TARGETS "${CJSON_UTILS_LIB}-static" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}")
  163. endif()
  164. install(FILES cJSON_Utils.h DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/cjson")
  165. install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig")
  166. if(ENABLE_TARGET_EXPORT)
  167. # export library information for CMake projects
  168. install(EXPORT "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
  169. endif()
  170. set_target_properties("${CJSON_UTILS_LIB}"
  171. PROPERTIES
  172. SOVERSION "${CJSON_UTILS_VERSION_SO}"
  173. VERSION "${PROJECT_VERSION}")
  174. endif()
  175. # create the other package config files
  176. configure_file(
  177. "${CMAKE_CURRENT_SOURCE_DIR}/library_config/cJSONConfig.cmake.in"
  178. ${PROJECT_BINARY_DIR}/cJSONConfig.cmake @ONLY)
  179. configure_file(
  180. "${CMAKE_CURRENT_SOURCE_DIR}/library_config/cJSONConfigVersion.cmake.in"
  181. ${PROJECT_BINARY_DIR}/cJSONConfigVersion.cmake @ONLY)
  182. # Install package config files
  183. install(FILES ${PROJECT_BINARY_DIR}/cJSONConfig.cmake
  184. ${PROJECT_BINARY_DIR}/cJSONConfigVersion.cmake
  185. DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
  186. option(ENABLE_CJSON_TEST "Enable building cJSON test" ON)
  187. if(ENABLE_CJSON_TEST)
  188. enable_testing()
  189. set(TEST_CJSON cJSON_test)
  190. add_executable("${TEST_CJSON}" test.c)
  191. target_link_libraries("${TEST_CJSON}" "${CJSON_LIB}")
  192. add_test(NAME ${TEST_CJSON} COMMAND "${CMAKE_CURRENT_BINARY_DIR}/${TEST_CJSON}")
  193. # Disable -fsanitize=float-divide-by-zero for cJSON_test
  194. if (FLAG_SUPPORTED_fsanitizefloatdividebyzero)
  195. if ("${CMAKE_VERSION}" VERSION_LESS "2.8.12")
  196. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-sanitize=float-divide-by-zero")
  197. else()
  198. target_compile_options(${TEST_CJSON} PRIVATE "-fno-sanitize=float-divide-by-zero")
  199. endif()
  200. endif()
  201. #"check" target that automatically builds everything and runs the tests
  202. add_custom_target(check
  203. COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure
  204. DEPENDS ${TEST_CJSON})
  205. endif()
  206. # Enable the use of locales
  207. option(ENABLE_LOCALES "Enable the use of locales" ON)
  208. if(ENABLE_LOCALES)
  209. add_definitions(-DENABLE_LOCALES)
  210. endif()
  211. add_subdirectory(tests)
  212. add_subdirectory(fuzzing)