diff --git a/CMakeLists.txt b/CMakeLists.txt index 98569d7..ec780c2 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) +find_package(AWSSDK REQUIRED COMPONENTS core sts) # Build static lib target_include_directories(${EXTENSION_NAME} diff --git a/vcpkg.json b/vcpkg.json index 2da224f..f3b90b5 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,9 +1,12 @@ { "dependencies": [ "zlib", - "aws-sdk-cpp", + { + "name": "aws-sdk-cpp", + "features": [ "sts" ] + }, "openssl" ], "builtin-baseline": "a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6", "overrides": [{"name": "openssl", "version": "3.0.8"}] -} \ No newline at end of file +}