From 34557d139e106464c6a7ee09467a7c361f8bbe6a Mon Sep 17 00:00:00 2001 From: David Morrison Date: Sat, 3 Aug 2024 22:06:27 -0700 Subject: [PATCH] support AWS SSO --- CMakeLists.txt | 2 +- vcpkg.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ec780c2..1627363 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ build_loadable_extension(${TARGET_NAME} ${PARAMETERS} ${EXTENSION_SOURCES}) # Weirdly we need to manually to this, otherwise linking against # ${AWSSDK_LINK_LIBRARIES} fails for some reason find_package(ZLIB REQUIRED) -find_package(AWSSDK REQUIRED COMPONENTS core sts) +find_package(AWSSDK REQUIRED COMPONENTS core sso sts) # Build static lib target_include_directories(${EXTENSION_NAME} diff --git a/vcpkg.json b/vcpkg.json index f3b90b5..5ccccd1 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -3,7 +3,7 @@ "zlib", { "name": "aws-sdk-cpp", - "features": [ "sts" ] + "features": [ "sso", "sts" ] }, "openssl" ],