Skip to content

Commit 2420fad

Browse files
committed
Small adjustments post rebase to 1.9.338
1 parent c26fdbf commit 2420fad

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

cmake/dependencies.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ find_package(ZLIB REQUIRED)
44
find_package(OpenSSL REQUIRED COMPONENTS Crypto)
55
find_package(tinyxml2 9.0.0 REQUIRED)
66
pkg_check_modules(CJSON REQUIRED IMPORTED_TARGET libcjson>=1.7.15)
7-
message(STATUS "Checking for aws-crt-cpp version 0.18.2")
8-
find_package(aws-crt-cpp 0.18.2 EXACT REQUIRED)
7+
message(STATUS "Checking for aws-crt-cpp")
8+
find_package(aws-crt-cpp 0.18.3 EXACT REQUIRED)
99
message(STATUS " Found aws-crt-cpp version ${aws-crt-cpp_VERSION}")
1010
# Infer dirs and libs temporarily from aws-crt-cpp_DIR until they get shipped in the new CRT version.
1111
set(aws-crt-cpp_INCLUDE_DIR "${aws-crt-cpp_DIR}/../../../include")

src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
// DEPRECATED: This file is used by legacy_build generators only
7-
#define AWS_SDK_VERSION_STRING 1.9.338
7+
#define AWS_SDK_VERSION_STRING "1.9.338"
88
#define AWS_SDK_VERSION_MAJOR 1
99
#define AWS_SDK_VERSION_MINOR 9
1010
#define AWS_SDK_VERSION_PATCH 338

src/aws-cpp-sdk-core/source/http/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ target_sources(aws-sdk-cpp-core
99
${CMAKE_CURRENT_SOURCE_DIR}/HttpClient.cpp
1010
${CMAKE_CURRENT_SOURCE_DIR}/HttpClientFactory.cpp
1111
${CMAKE_CURRENT_SOURCE_DIR}/HttpRequest.cpp
12+
${CMAKE_CURRENT_SOURCE_DIR}/HttpResponse.cpp
1213
${CMAKE_CURRENT_SOURCE_DIR}/HttpTypes.cpp
1314
${CMAKE_CURRENT_SOURCE_DIR}/Scheme.cpp
1415
${CMAKE_CURRENT_SOURCE_DIR}/URI.cpp
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
target_sources(
22
aws-sdk-cpp-core-test
33
PRIVATE
4-
${CMAKE_CURRENT_SOURCE_DIR}/AWSProfileConfigLoaderTest.cpp
4+
${CMAKE_CURRENT_SOURCE_DIR}/AWSConfigFileProfileConfigLoaderTest.cpp
55
${CMAKE_CURRENT_SOURCE_DIR}/ClientConfigurationDefaultsTest.cpp
6+
${CMAKE_CURRENT_SOURCE_DIR}/EC2InstanceProfileConfigLoaderTest.cpp
67
)

0 commit comments

Comments
 (0)