this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix clang version check to use build dir

+1 -1
+1 -1
cmake/clang_version_check.cmake
··· 11 11 12 12 file(WRITE "${CMAKE_BINARY_DIR}/clang_major.${source_type}" "#include <stdio.h>\n" 13 13 "#if !__clang__\n" "#error \"Not running on a clang compiler!\"\n" "#endif\n" "int main() { printf(\"%d\", __clang_major__); }") 14 - execute_process(COMMAND "${compiler}" "${CMAKE_BINARY_DIR}/clang_major.${source_type}" "-o" "clang_${source_type}_major" 14 + execute_process(COMMAND "${compiler}" "${CMAKE_BINARY_DIR}/clang_major.${source_type}" "-o" "${CMAKE_BINARY_DIR}/clang_${source_type}_major" 15 15 RESULT_VARIABLE BUILD_CLANG_TEST_RESULT 16 16 OUTPUT_VARIABLE BUILD_CLANG_TEST_OUTPUT 17 17 COMMAND_ECHO NONE