forked from OSchip/llvm-project
6 lines
177 B
CMake
6 lines
177 B
CMake
|
include(CheckCCompilerFlag)
|
||
|
include(CheckCXXCompilerFlag)
|
||
|
|
||
|
check_c_compiler_flag(-Werror OPENMP_HAVE_WERROR_FLAG)
|
||
|
|
||
|
check_cxx_compiler_flag(-std=c++11 OPENMP_HAVE_STD_CPP11_FLAG)
|