We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54ff899 commit 264eb85Copy full SHA for 264eb85
1 file changed
identity/CMakeLists.txt
@@ -2,6 +2,11 @@
2
3
cmake_minimum_required(VERSION 3.9...3.31)
4
5
+option(AWS_CRT_DISABLE_DEPRECATION_WARNINGS "Set this to silence [[deprecated]] warnings coming from aws-crt-cpp headers" OFF)
6
+if(AWS_CRT_DISABLE_DEPRECATION_WARNINGS)
7
+ add_compile_definitions(AWS_CRT_DISABLE_DEPRECATION_WARNINGS)
8
+endif()
9
+
10
project(IotIdentity-cpp LANGUAGES CXX VERSION ${SIMPLE_VERSION})
11
12
set(GENERATED_ROOT_DIR "${CMAKE_CURRENT_BINARY_DIR}/generated")
0 commit comments