File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,12 @@ if (NOT CMAKE_CXX_STANDARD)
16
16
set (CMAKE_CXX_STANDARD 11 )
17
17
endif ()
18
18
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
+
20
25
configure_file (include /aws/crt/Config.h.in ${CMAKE_CURRENT_LIST_DIR} /include/aws/crt/Config.h @ONLY )
21
26
22
27
if (BUILD_DEPS )
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ C++ wrapper around the aws-c-* libraries. Provides Cross-Platform Transport Prot
7
7
* aws-c-common: Cross-platform primitives and data structures.
8
8
* aws-c-io: Cross-platform event-loops, non-blocking I/O, and TLS implementations.
9
9
* 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)
10
12
11
13
More protocols and utilities are coming soon, so stay tuned.
12
14
You can’t perform that action at this time.
0 commit comments