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.
2 parents 54be0e4 + 3bf4147 commit 29cc81eCopy full SHA for 29cc81e
CMakeLists.txt
@@ -20,8 +20,8 @@ endif()
20
execute_process(COMMAND ${CLANG} --version OUTPUT_VARIABLE CLANG_VERSION_RAW)
21
string(REGEX MATCH "[0-9]+[.][0-9]+[.][0-9]+" CLANG_VERSION ${CLANG_VERSION_RAW})
22
message(STATUS "Found CLANG: ${CLANG} (found version \"${CLANG_VERSION}\")")
23
-if (CLANG_VERSION VERSION_LESS 3.5.0)
24
- message(FATAL_ERROR "requires clang version >= 3.5.0, ${CLANG_VERSION} found")
+if (CLANG_VERSION VERSION_LESS 3.0.0)
+ message(FATAL_ERROR "requires clang version >= 3.0.0, ${CLANG_VERSION} found")
25
endif()
26
27
set(CMAKE_C_FLAGS "-Wall")
0 commit comments