We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcabee7 commit 4d7bdd1Copy full SHA for 4d7bdd1
CMakeLists.txt
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8)
2
3
option(PIPEABLE_BUILD_TESTS "Build tests" OFF)
4
5
-project(pipeable)
+project(pipeable CXX)
6
7
add_library( ${PROJECT_NAME} INTERFACE)
8
add_library(fho::${PROJECT_NAME} ALIAS ${PROJECT_NAME})
catch2/CMakeLists.txt
@@ -4,4 +4,5 @@ add_library(catch2 define_main.cpp)
target_include_directories( catch2
PRIVATE ./catch2
INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
-)
+)
+target_compile_features(catch2 PUBLIC cxx_std_17)
0 commit comments