mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-23 05:46:11 +01:00
tweak CMakeLists.txt
This commit is contained in:
parent
f8d24b1d50
commit
5553a538c5
@ -3,16 +3,10 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
project(Catch C CXX)
|
project(Catch C CXX)
|
||||||
message("configure: Catch/SelfTest")
|
message("configure: Catch/SelfTest")
|
||||||
|
|
||||||
# switch to the right compiler
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
||||||
if(APPLE)
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
|
||||||
endif(APPLE)
|
|
||||||
|
|
||||||
# define some folders
|
# define some folders
|
||||||
set(CATCH_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../")
|
set(CATCH_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../..")
|
||||||
set(SELF_TEST_DIR ${CATCH_DIR}/projects/SelfTest)
|
set(SELF_TEST_DIR ${CATCH_DIR}/projects/SelfTest)
|
||||||
set(SCRIPTS_DIR ${CATCH_DIR}/scripts/)
|
set(SCRIPTS_DIR ${CATCH_DIR}/scripts)
|
||||||
|
|
||||||
# define the sources of the self test
|
# define the sources of the self test
|
||||||
set(
|
set(
|
||||||
@ -34,13 +28,9 @@ set(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# configure the executable
|
# configure the executable
|
||||||
include_directories(${CATCH_DIR}/include/)
|
include_directories(${CATCH_DIR}/include)
|
||||||
add_executable(SelfTest ${SOURCES})
|
add_executable(SelfTest ${SOURCES})
|
||||||
|
|
||||||
# configure unit tests via ctest
|
# configure unit tests via ctest
|
||||||
enable_testing()
|
enable_testing()
|
||||||
add_test(NAME SelfTest_run COMMAND python ${SCRIPTS_DIR}/approvalTests.py "${CATCH_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/SelfTest")
|
add_test(NAME SelfTest_run COMMAND python ${SCRIPTS_DIR}/approvalTests.py "${CATCH_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/SelfTest")
|
||||||
|
|
||||||
#add_custom_target(SelfTest_scripts ALL
|
|
||||||
# COMMAND ${CMAKE_COMMAND} -E create_symlink \"${CMAKE_CURRENT_SOURCE_DIR}/../../../Data/Resources/mentor2wkt.json\" \"${CMAKE_CURRENT_BINARY_DIR}/mentor2wkt.json\"
|
|
||||||
#)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user