blob: bd5ca4ee32925bc93a86afb28f534a8a5299e890 [file] [log] [blame]
onqtamc7aaa962016-09-10 02:16:57 +03001cmake_minimum_required(VERSION 3.0)
onqtam4a655632016-05-26 14:20:52 +03002
onqtambff67f72017-04-16 20:04:32 +03003################################################################################
4## DOCTEST
5################################################################################
6
7file(READ ${CMAKE_CURRENT_SOURCE_DIR}/scripts/version.txt ver)
8project(doctest VERSION ${ver})
onqtam4a655632016-05-26 14:20:52 +03009
onqtamb22d8782019-03-24 13:29:57 +020010option(DOCTEST_WITH_TESTS "Build tests/examples" ON)
onqtam36e37452019-03-02 20:10:05 +020011option(DOCTEST_WITH_MAIN_IN_STATIC_LIB "Build a static lib (cmake target) with a default main entry point" ON)
NeverMine17b63bf852017-10-28 16:06:43 +030012option(DOCTEST_NO_INSTALL "Skip the installation process" OFF)
Giuseppe Robertif3425ae2017-03-28 02:03:50 +020013
onqtam61954c32017-04-16 17:22:44 +030014add_library(${PROJECT_NAME} INTERFACE)
onqtam36e37452019-03-02 20:10:05 +020015
onqtamf80b3f02019-03-24 10:19:09 +020016set(doctest_parts_folder "${CMAKE_CURRENT_SOURCE_DIR}/doctest/parts")
17
onqtam36e37452019-03-02 20:10:05 +020018if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
onqtamb22d8782019-03-24 13:29:57 +020019 # use a special hidden version of the header which directly includes the 2 parts - proper reporting of file/line locations during dev
onqtam36e37452019-03-02 20:10:05 +020020 target_include_directories(${PROJECT_NAME} INTERFACE
21 $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/scripts/development_only/>
onqtamf80b3f02019-03-24 10:19:09 +020022 $<BUILD_INTERFACE:${doctest_parts_folder}>)
23
24 # add a custom target that assembles the single header when any of the parts are touched
25 add_custom_command(
26 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/doctest/doctest.h
27 DEPENDS
28 ${doctest_parts_folder}/doctest_fwd.h
29 ${doctest_parts_folder}/doctest.cpp
30 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_SOURCE_DIR}/scripts/cmake/assemble_single_header.cmake
31 COMMENT "assembling the single header")
32
33 add_custom_target(assemble_single_header ALL DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/doctest/doctest.h)
onqtam36e37452019-03-02 20:10:05 +020034else()
35 target_include_directories(${PROJECT_NAME} INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/>)
36endif()
onqtam4a655632016-05-26 14:20:52 +030037
Dimitrij Mijoski0dbbd4f2019-03-02 17:37:34 +010038# hack to support building on XCode 6 and 7 - propagate the definition to everything
39if(DEFINED DOCTEST_THREAD_LOCAL)
40 target_compile_definitions(${PROJECT_NAME} INTERFACE
41 DOCTEST_THREAD_LOCAL=${DOCTEST_THREAD_LOCAL})
42endif()
43
onqtamb759fb42017-08-01 18:38:26 +030044################################################################################
45## TESTS/EXAMPLES/HELPERS
46################################################################################
Yordan Madzhunkov7d8af912017-06-26 12:20:57 +030047
Dimitrij Mijoski02d4c9b2019-03-14 15:09:37 +010048if(${DOCTEST_WITH_MAIN_IN_STATIC_LIB})
onqtamf80b3f02019-03-24 10:19:09 +020049 add_library(${PROJECT_NAME}_with_main STATIC EXCLUDE_FROM_ALL ${doctest_parts_folder}/doctest.cpp)
Dimitrij Mijoski0dbbd4f2019-03-02 17:37:34 +010050 target_compile_definitions(${PROJECT_NAME}_with_main PRIVATE
51 DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN)
Daan De Meyer3b324ce2019-05-04 09:12:44 +020052 set_target_properties(${PROJECT_NAME}_with_main PROPERTIES
53 CXX_STANDARD 11
54 CXX_STANDARD_REQUIRED ON)
Dimitrij Mijoski02d4c9b2019-03-14 15:09:37 +010055 target_link_libraries(${PROJECT_NAME}_with_main PUBLIC ${PROJECT_NAME})
onqtamb759fb42017-08-01 18:38:26 +030056endif()
onqtamcc9e8652016-08-02 14:23:38 +030057
onqtamb22d8782019-03-24 13:29:57 +020058if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR AND DOCTEST_WITH_TESTS)
onqtam61954c32017-04-16 17:22:44 +030059 include(scripts/cmake/common.cmake)
onqtamf6d1a512017-05-01 13:56:12 +030060
61 add_subdirectory(examples/all_features)
onqtamaec53d22017-05-03 06:29:47 +030062
onqtamc6cc9ff2019-03-15 17:22:50 +020063 # for code coverage we want exactly one binary to be produced and exercised
onqtamaec53d22017-05-03 06:29:47 +030064 if(NOT DEFINED ENV{CODE_COVERAGE})
65 add_subdirectory(examples/exe_with_static_libs)
66 add_subdirectory(examples/executable_dll_and_plugin)
67 add_subdirectory(scripts/playground)
68 endif()
Giuseppe Robertif3425ae2017-03-28 02:03:50 +020069endif()
Giuseppe Robertie01299b2017-03-26 14:18:59 +020070
onqtam61954c32017-04-16 17:22:44 +030071################################################################################
72## PACKAGE SUPPORT
73################################################################################
74
Giuseppe Robertie01299b2017-03-26 14:18:59 +020075set(generated_dir "${CMAKE_CURRENT_BINARY_DIR}/generated")
76
Haraldc123a692019-04-01 18:00:31 +020077if(CMAKE_SYSTEM_NAME STREQUAL Linux)
78 include(GNUInstallDirs)
79 set(include_install_dir ${CMAKE_INSTALL_INCLUDEDIR})
80 set(config_install_dir "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}")
81else()
82 set(include_install_dir "include")
83 set(config_install_dir "lib/cmake/${PROJECT_NAME}")
84endif()
85
Giuseppe Robertie01299b2017-03-26 14:18:59 +020086
87set(version_config "${generated_dir}/${PROJECT_NAME}ConfigVersion.cmake")
88set(project_config "${generated_dir}/${PROJECT_NAME}Config.cmake")
89set(targets_export_name "${PROJECT_NAME}Targets")
90set(namespace "${PROJECT_NAME}::")
91
92include(CMakePackageConfigHelpers)
Morris Hafnerf9d5d6a2019-04-16 06:34:07 +010093
94# CMake automatically adds an architecture compatibility check to make sure
95# 32 and 64 bit code is not accidentally mixed. For a header-only library this
96# is not required. The check can be disabled by temporarily unsetting
97# CMAKE_SIZEOF_VOID_P. In CMake 3.14 and later this can be achieved more cleanly
98# with write_basic_package_version_file(ARCH_INDEPENDENT).
99# TODO: Use this once a newer CMake can be required.
100set(DOCTEST_SIZEOF_VOID_P ${CMAKE_SIZEOF_VOID_P})
101unset(CMAKE_SIZEOF_VOID_P)
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200102write_basic_package_version_file(
Giuseppe Robertic89cf822017-04-12 17:14:17 +0200103 "${version_config}" VERSION ${PROJECT_VERSION} COMPATIBILITY SameMajorVersion
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200104)
Morris Hafnerf9d5d6a2019-04-16 06:34:07 +0100105set(CMAKE_SIZEOF_VOID_P ${DOCTEST_SIZEOF_VOID_P})
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200106
onqtam08cf7dc2017-04-16 11:37:22 +0300107configure_file("scripts/cmake/Config.cmake.in" "${project_config}" @ONLY)
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200108
onqtam17c97382019-03-24 09:24:02 +0200109if(NOT ${DOCTEST_NO_INSTALL})
NeverMine17b63bf852017-10-28 16:06:43 +0300110 install(
111 TARGETS ${PROJECT_NAME}
112 EXPORT "${targets_export_name}"
113 INCLUDES DESTINATION "${include_install_dir}"
114 )
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200115
NeverMine17b63bf852017-10-28 16:06:43 +0300116 install(
onqtam36e37452019-03-02 20:10:05 +0200117 FILES "doctest/doctest.h"
ncihnegnbc43fe42019-01-27 05:28:54 -0800118 DESTINATION "${include_install_dir}/doctest"
NeverMine17b63bf852017-10-28 16:06:43 +0300119 )
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200120
NeverMine17b63bf852017-10-28 16:06:43 +0300121 install(
122 FILES "${project_config}" "${version_config}"
123 DESTINATION "${config_install_dir}"
124 )
Giuseppe Robertie01299b2017-03-26 14:18:59 +0200125
NeverMine17b63bf852017-10-28 16:06:43 +0300126 install(
127 EXPORT "${targets_export_name}"
128 NAMESPACE "${namespace}"
129 DESTINATION "${config_install_dir}"
130 )
131endif()