this repo has no description
1
fork

Configure Feed

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

Fix compiler detection on fresh Debian 10

Fixes #535

+2
+2
CMakeLists.txt
··· 6 6 find_program(CMAKE_C_COMPILER NAMES 7 7 "clang" 8 8 "clang-4.0" 9 + "clang-6.0" 9 10 "clang-7") 10 11 endif(NOT DEFINED CMAKE_C_COMPILER) 11 12 ··· 13 14 find_program(CMAKE_CXX_COMPILER NAMES 14 15 "clang++" 15 16 "clang++-4.0" 17 + "clang++-6.0" 16 18 "clang++-7") 17 19 endif(NOT DEFINED CMAKE_CXX_COMPILER) 18 20