doxygen/doxygen
CMakeLists.txt
:129
check_cxx_source_compiles(
"
#include <algorithm>
#if !defined(__clang__) || !defined(_LIBCPP_VERSION)
# error \"This is not clang with libcxx by llvm\"
#endif
int main() {
return 0;
}
"
IS_CLANG_LIBCPP
FAIL_REGEX "This is not clang with libcxx by llvm"
)