diff --git a/.github/workflows/consumer.yaml b/.github/workflows/consumer.yaml index f13a35c..29c1824 100644 --- a/.github/workflows/consumer.yaml +++ b/.github/workflows/consumer.yaml @@ -100,7 +100,7 @@ jobs: conan profile new default --detect conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan conan remote add pact-foundation https://api.bintray.com/conan/pact-foundation/conan - conan profile update settings.compiler.cppstd=14 default + conan profile update settings.compiler.cppstd=17 default conan install .. --build missing working-directory: consumer/build - name: Build library diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1f2b2c6..d73758c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -96,7 +96,7 @@ jobs: conan profile new default --detect conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan conan remote add pact-foundation https://api.bintray.com/conan/pact-foundation/conan - conan profile update settings.compiler.cppstd=14 default + conan profile update settings.compiler.cppstd=17 default conan install .. --build missing working-directory: consumer/build - name: Build conan package diff --git a/consumer/test_package/CMakeLists.txt b/consumer/test_package/CMakeLists.txt index c38bc2b..52528f4 100644 --- a/consumer/test_package/CMakeLists.txt +++ b/consumer/test_package/CMakeLists.txt @@ -10,7 +10,7 @@ conan_basic_setup() add_executable(example example.cpp) if(WIN32) - TARGET_LINK_LIBRARIES(example ${CONAN_LIBS} ws2_32 userenv crypt32 secur32 dnsapi ncrypt) + TARGET_LINK_LIBRARIES(example ${CONAN_LIBS} ws2_32 userenv crypt32 secur32 dnsapi ncrypt ntdll) elseif(UNIX) # LINUX or APPLE TARGET_LINK_LIBRARIES(example ${CONAN_LIBS}) endif()