You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
451 B

include(RunCMake)
if (CMAKE_C_COMPILER_ID MATCHES "Clang|GNU|LCC")
run_cmake(CheckLinkerFlagC)
run_cmake(CheckLinkerFlagCXX)
if (APPLE)
run_cmake(CheckLinkerFlagOBJC)
run_cmake(CheckLinkerFlagOBJCXX)
endif()
endif()
if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU|LCC")
run_cmake(CheckLinkerFlagFortran)
endif()
if (CMake_TEST_CUDA)
run_cmake(CheckLinkerFlagCUDA)
endif()
if (CMake_TEST_HIP)
run_cmake(CheckLinkerFlagHIP)
endif()