2016-11-11 13:52:10 +07:00
|
|
|
set(CMAKE_LEGACY_CYGWIN_WIN32 0)
|
2015-07-15 14:01:46 +06:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
2016-11-05 23:16:57 +07:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2016-11-05 21:18:03 +07:00
|
|
|
project(cJSON C)
|
|
|
|
|
2016-11-06 14:58:22 +07:00
|
|
|
set(PROJECT_VERSION_MAJOR 1)
|
2017-01-09 12:25:31 +01:00
|
|
|
set(PROJECT_VERSION_MINOR 2)
|
2017-01-30 19:36:36 +01:00
|
|
|
set(PROJECT_VERSION_PATCH 1)
|
2016-11-04 20:31:56 +07:00
|
|
|
set(CJSON_VERSION_SO 1)
|
2016-11-05 01:30:31 +07:00
|
|
|
set(CJSON_UTILS_VERSION_SO 1)
|
2016-11-06 14:58:22 +07:00
|
|
|
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
|
2015-07-15 14:01:46 +06:00
|
|
|
|
2016-11-26 12:57:12 +07:00
|
|
|
option(ENABLE_CUSTOM_COMPILER_FLAGS "Enables custom compiler flags for Clang and GCC" ON)
|
2016-11-15 20:21:57 +07:00
|
|
|
if (ENABLE_CUSTOM_COMPILER_FLAGS)
|
|
|
|
if(("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang"))
|
2017-02-03 18:34:37 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c89 -pedantic -Wall -Wextra -Werror -Wstrict-prototypes -Wwrite-strings -Wshadow -Winit-self -Wcast-align -Wformat=2 -Wmissing-prototypes -Wstrict-overflow=2 -Wcast-qual -Wc++-compat -Wundef -Wswitch-default -Wconversion")
|
2016-11-15 20:21:57 +07:00
|
|
|
endif()
|
2016-11-05 21:24:24 +07:00
|
|
|
endif()
|
2016-11-05 00:51:31 +07:00
|
|
|
|
2016-10-17 22:12:12 -02:00
|
|
|
#variables for pkg-config
|
2016-11-05 22:52:40 +07:00
|
|
|
set(prefix "${CMAKE_INSTALL_PREFIX}")
|
2016-11-06 14:54:43 +07:00
|
|
|
set(libdir "${CMAKE_INSTALL_LIBDIR}")
|
2016-11-06 14:58:22 +07:00
|
|
|
set(version "${PROJECT_VERSION}")
|
2016-11-06 14:54:43 +07:00
|
|
|
set(includedir "${CMAKE_INSTALL_INCLUDEDIR}")
|
2016-10-17 22:12:12 -02:00
|
|
|
|
2016-11-05 16:41:24 +07:00
|
|
|
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
|
2016-11-07 00:13:38 +07:00
|
|
|
option(ENABLE_TARGET_EXPORT "Enable exporting of CMake targets. Disable when it causes problems!" ON)
|
2016-11-05 16:41:24 +07:00
|
|
|
|
2016-11-05 00:38:30 +07:00
|
|
|
#cJSON
|
2016-11-05 00:46:41 +07:00
|
|
|
set(CJSON_LIB cjson)
|
2016-11-05 00:38:30 +07:00
|
|
|
|
2015-07-15 14:01:46 +06:00
|
|
|
file(GLOB HEADERS cJSON.h)
|
|
|
|
set(SOURCES cJSON.c)
|
|
|
|
|
2016-11-05 22:52:40 +07:00
|
|
|
add_library("${CJSON_LIB}" "${HEADERS}" "${SOURCES}")
|
2015-08-19 23:03:08 -04:00
|
|
|
if (NOT WIN32)
|
2016-11-05 22:52:40 +07:00
|
|
|
target_link_libraries("${CJSON_LIB}" m)
|
2015-08-19 23:03:08 -04:00
|
|
|
endif()
|
2015-07-15 14:01:46 +06:00
|
|
|
|
2016-11-05 22:42:35 +07:00
|
|
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/libcjson.pc.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" @ONLY)
|
2016-10-17 22:12:12 -02:00
|
|
|
|
2016-11-05 23:16:57 +07:00
|
|
|
install(FILES cJSON.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/cjson")
|
|
|
|
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
2016-11-06 15:35:53 +07:00
|
|
|
install(TARGETS "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}" EXPORT "${CJSON_LIB}")
|
2016-11-07 00:13:38 +07:00
|
|
|
if(ENABLE_TARGET_EXPORT)
|
2016-11-15 20:21:30 +07:00
|
|
|
# export library information for CMake projects
|
|
|
|
install(EXPORT "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/cJSON")
|
2016-11-07 00:13:38 +07:00
|
|
|
endif()
|
2015-07-28 03:33:17 +06:00
|
|
|
|
2016-11-05 22:52:40 +07:00
|
|
|
set_target_properties("${CJSON_LIB}"
|
2016-11-05 00:50:51 +07:00
|
|
|
PROPERTIES
|
2016-11-05 22:52:40 +07:00
|
|
|
SOVERSION "${CJSON_VERSION_SO}"
|
2016-11-06 14:58:22 +07:00
|
|
|
VERSION "${PROJECT_VERSION}")
|
2016-11-05 00:50:51 +07:00
|
|
|
|
2016-11-05 00:38:30 +07:00
|
|
|
#cJSON_Utils
|
2016-11-05 22:20:55 +07:00
|
|
|
option(ENABLE_CJSON_UTILS "Enable building the cJSON_Utils library." OFF)
|
|
|
|
if(ENABLE_CJSON_UTILS)
|
|
|
|
set(CJSON_UTILS_LIB cjson_utils)
|
2015-07-28 03:33:17 +06:00
|
|
|
|
2016-11-05 22:20:55 +07:00
|
|
|
file(GLOB HEADERS_UTILS cJSON_Utils.h)
|
|
|
|
set(SOURCES_UTILS cJSON_Utils.c)
|
2015-07-28 03:33:17 +06:00
|
|
|
|
2016-11-05 22:52:40 +07:00
|
|
|
add_library("${CJSON_UTILS_LIB}" "${HEADERS_UTILS}" "${SOURCES_UTILS}")
|
|
|
|
target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
|
2015-07-28 03:33:17 +06:00
|
|
|
|
2016-11-05 22:42:35 +07:00
|
|
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/libcjson_utils.pc.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" @ONLY)
|
2016-11-05 15:57:14 +07:00
|
|
|
|
2016-11-06 15:35:53 +07:00
|
|
|
install(TARGETS "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}" EXPORT "${CJSON_UTILS_LIB}")
|
2016-11-05 23:16:57 +07:00
|
|
|
install(FILES cJSON_Utils.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/cjson")
|
|
|
|
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
2016-11-07 00:13:38 +07:00
|
|
|
if(ENABLE_TARGET_EXPORT)
|
|
|
|
# export library information for CMake projects
|
|
|
|
install(EXPORT "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/cJSON")
|
|
|
|
endif()
|
2015-07-15 14:01:46 +06:00
|
|
|
|
2016-11-05 22:52:40 +07:00
|
|
|
set_target_properties("${CJSON_UTILS_LIB}"
|
2016-11-05 22:20:55 +07:00
|
|
|
PROPERTIES
|
2016-11-05 22:52:40 +07:00
|
|
|
SOVERSION "${CJSON_UTILS_VERSION_SO}"
|
2016-11-06 14:58:22 +07:00
|
|
|
VERSION "${PROJECT_VERSION}")
|
2016-11-05 22:20:55 +07:00
|
|
|
endif()
|
2016-11-05 00:50:51 +07:00
|
|
|
|
2016-11-04 19:59:04 +01:00
|
|
|
# create the other package config files
|
|
|
|
configure_file(
|
2016-11-15 20:21:30 +07:00
|
|
|
cJSONConfig.cmake.in
|
|
|
|
${PROJECT_BINARY_DIR}/cJSONConfig.cmake @ONLY)
|
2016-11-04 19:59:04 +01:00
|
|
|
configure_file(
|
2016-11-15 20:21:30 +07:00
|
|
|
cJSONConfigVersion.cmake.in
|
|
|
|
${PROJECT_BINARY_DIR}/cJSONConfigVersion.cmake @ONLY)
|
2016-11-04 19:59:04 +01:00
|
|
|
|
|
|
|
# Install package config files
|
|
|
|
install(FILES ${PROJECT_BINARY_DIR}/cJSONConfig.cmake
|
2016-11-15 20:21:30 +07:00
|
|
|
${PROJECT_BINARY_DIR}/cJSONConfigVersion.cmake
|
|
|
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/cJSON")
|
2016-11-04 19:59:04 +01:00
|
|
|
|
2016-11-14 19:36:04 +07:00
|
|
|
option(ENABLE_CJSON_TEST "Enable building cJSON test" ON)
|
2015-07-15 14:01:46 +06:00
|
|
|
if(ENABLE_CJSON_TEST)
|
2016-11-05 00:40:23 +07:00
|
|
|
set(TEST_CJSON cJSON_test)
|
2016-11-05 22:52:40 +07:00
|
|
|
add_executable("${TEST_CJSON}" test.c)
|
|
|
|
target_link_libraries("${TEST_CJSON}" "${CJSON_LIB}")
|
2015-07-28 03:33:17 +06:00
|
|
|
|
2016-11-05 22:20:55 +07:00
|
|
|
if(ENABLE_CJSON_UTILS)
|
|
|
|
set(TEST_CJSON_UTILS cJSON_test_utils)
|
2016-11-05 22:52:40 +07:00
|
|
|
add_executable("${TEST_CJSON_UTILS}" test_utils.c)
|
|
|
|
target_link_libraries("${TEST_CJSON_UTILS}" "${CJSON_UTILS_LIB}")
|
2016-11-05 22:20:55 +07:00
|
|
|
endif()
|
2015-07-15 14:01:46 +06:00
|
|
|
endif()
|