Skip to content

Commit

Permalink
Merge pull request #49 from drmorr0/drmorr/sso-support
Browse files Browse the repository at this point in the history
support AWS SSO authentication
  • Loading branch information
samansmink authored Aug 9, 2024
2 parents 3d1f5c8 + 34557d1 commit e738b4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"zlib",
{
"name": "aws-sdk-cpp",
"features": [ "sts" ]
"features": [ "sso", "sts" ]
},
"openssl"
],
Expand Down

0 comments on commit e738b4c

Please sign in to comment.