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 f8d662e commit 4f8ccdcCopy full SHA for 4f8ccdc
.github/workflows/integration.yml
@@ -33,7 +33,7 @@ jobs:
33
- name: Run Sample CMake
34
run: |
35
mkdir install && cd install
36
- cmake ../test/integration/install-test -G Ninja
+ cmake ../test/integration/install-test -G Ninja -DCMAKE_CXX_FLAGS="-std=c++20"
37
ninja && ctest --verbose
38
39
fetch-content:
test_package/CMakeLists.txt
@@ -5,7 +5,7 @@ include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
5
conan_basic_setup()
6
7
add_library(spy_config INTERFACE)
8
-target_compile_features ( spy_config INTERFACE cxx_std_17 )
+target_compile_features ( spy_config INTERFACE cxx_std_20 )
9
10
add_executable(example example.cpp)
11
target_link_libraries(example ${CONAN_LIBS} PUBLIC spy_config)
0 commit comments