We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3727fb commit d2ff805Copy full SHA for d2ff805
1 file changed
CMakeLists.txt
@@ -33,6 +33,10 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
33
opendaq_common_compile_targets_settings()
34
opendaq_setup_compiler_flags(${REPO_OPTION_PREFIX})
35
36
+if (CMAKE_CXX_COMPILER_ID MATCHES "Clang|AppleClang" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 10)
37
+ add_compile_options(-Wno-unknown-warning-option)
38
+endif()
39
+
40
if (${REPO_OPTION_PREFIX}_ENABLE_TESTS)
41
message(STATUS "Unit tests in ${REPO_NAME} are ENABLED")
42
set(OPENDAQ_ENABLE_TEST_UTILS ON CACHE BOOL "Enable testing utils library")
0 commit comments