Skip to content

Commit d7794e7

Browse files
Fixed default cmake build without a specified CMAKE_BUILD_TYPE. (aws#68)
1 parent 289470f commit d7794e7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ if (NOT CMAKE_CXX_STANDARD)
1616
set(CMAKE_CXX_STANDARD 11)
1717
endif()
1818

19-
set(AWS_CRT_CPP_VERSION "v0.5.6")
19+
if (NOT CMAKE_BUILD_TYPE)
20+
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
21+
endif()
22+
23+
set(AWS_CRT_CPP_VERSION "v0.6.2")
24+
2025
configure_file(include/aws/crt/Config.h.in ${CMAKE_CURRENT_LIST_DIR}/include/aws/crt/Config.h @ONLY)
2126

2227
if (BUILD_DEPS)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ C++ wrapper around the aws-c-* libraries. Provides Cross-Platform Transport Prot
77
* aws-c-common: Cross-platform primitives and data structures.
88
* aws-c-io: Cross-platform event-loops, non-blocking I/O, and TLS implementations.
99
* aws-c-mqtt: MQTT client.
10+
* aws-c-auth: Auth signers such as Aws-auth sigv4
11+
* aws-c-http: HTTP 1.1 client, and websockets (H2 coming soon)
1012

1113
More protocols and utilities are coming soon, so stay tuned.
1214

0 commit comments

Comments
 (0)