reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Determine if the compiler has GCC-compatible command-line syntax. if(NOT DEFINED LLVM_COMPILER_IS_GCC_COMPATIBLE) if(CMAKE_COMPILER_IS_GNUCXX) set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON) elseif( MSVC ) set(LLVM_COMPILER_IS_GCC_COMPATIBLE OFF) elseif( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" ) set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON) elseif( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel" ) set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON) endif() endif() |