We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15c809e commit dfd0290Copy full SHA for dfd0290
tests/CMakeLists.txt
@@ -80,6 +80,11 @@ if(MSVC)
80
target_link_options(unit_tests PRIVATE "/ENTRY:wmainCRTStartup")
81
endif()
82
83
+if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
84
+ target_compile_options(unit_tests PUBLIC
85
+ # disabled due to unit tests still testing deprecated features
86
+ -Wdeprecated-declarations)
87
+endif()
88
89
target_precompile_headers(unit_tests PRIVATE
90
<sqlite3.h>
0 commit comments