Skip to content

Commit 4f8ccdc

Browse files
committed
Fix integration - Take II
1 parent f8d662e commit 4f8ccdc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Run Sample CMake
3434
run: |
3535
mkdir install && cd install
36-
cmake ../test/integration/install-test -G Ninja
36+
cmake ../test/integration/install-test -G Ninja -DCMAKE_CXX_FLAGS="-std=c++20"
3737
ninja && ctest --verbose
3838
3939
fetch-content:

test_package/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
55
conan_basic_setup()
66

77
add_library(spy_config INTERFACE)
8-
target_compile_features ( spy_config INTERFACE cxx_std_17 )
8+
target_compile_features ( spy_config INTERFACE cxx_std_20 )
99

1010
add_executable(example example.cpp)
1111
target_link_libraries(example ${CONAN_LIBS} PUBLIC spy_config)

0 commit comments

Comments
 (0)