Trying to fix unit tests when targeting OSX 10.9.
This commit is contained in:
parent
e2fd540815
commit
4473254779
1 changed files with 5 additions and 0 deletions
|
@ -8,6 +8,11 @@ add_library(Catch2 INTERFACE)
|
||||||
list (APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/modules/Catch2)
|
list (APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/modules/Catch2)
|
||||||
target_include_directories(Catch2 INTERFACE ${CMAKE_CURRENT_LIST_DIR})
|
target_include_directories(Catch2 INTERFACE ${CMAKE_CURRENT_LIST_DIR})
|
||||||
add_library(Catch2::Catch2 ALIAS Catch2)
|
add_library(Catch2::Catch2 ALIAS Catch2)
|
||||||
|
if (APPLE)
|
||||||
|
# OSX builds targeting OSX 10.9 do not support new std::uncought_exception()
|
||||||
|
# see https://github.com/catchorg/Catch2/issues/1218
|
||||||
|
target_compile_definitions(Catch2 PUBLIC -DCATCH_CONFIG_NO_CPP17_UNCAUGHT_EXCEPTIONS)
|
||||||
|
endif()
|
||||||
include(Catch)
|
include(Catch)
|
||||||
|
|
||||||
set(CATCH_EXTRA_ARGS "" CACHE STRING "Extra arguments for catch2 test suites.")
|
set(CATCH_EXTRA_ARGS "" CACHE STRING "Extra arguments for catch2 test suites.")
|
||||||
|
|
Loading…
Reference in a new issue