Commit 493a280e authored by Dominik Charousset's avatar Dominik Charousset

Remove unused file

parent 2c1e56f5
set(LABEL_EXPR "$ENV{label_exp}")
if ("${LABEL_EXPR}" MATCHES "gcc" OR "${LABEL_EXPR}" MATCHES "gcovr")
message(STATUS "Set CXX to g++ based on label_expr content")
set(CMAKE_C_COMPILER "gcc" CACHE PATH "C compiler option")
set(CMAKE_CXX_COMPILER "g++" CACHE PATH "C++ compiler option")
# OpenCL header on OSX do not work with GCC
if(APPLE)
set(CAF_NO_OPENCL yes CACHE BOOL "Configure OpenCL module")
endif(APPLE)
elseif ("${LABEL_EXPR}" MATCHES "clang")
message(STATUS "Set CXX to clang++ based on label_expr content")
set(CMAKE_C_COMPILER "clang" CACHE STRING "C compiler option")
set(CMAKE_CXX_COMPILER "clang++" CACHE STRING "C++ compiler option")
endif()
# disable SSL when doing leak checking due to a known issue with the module
if (${LABEL_EXPR} MATCHES "LeakSanitizer")
set(CAF_NO_OPENSSL yes CACHE BOOL "Configure OpenSSL module")
endif()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment