Files
CMake/Tests/RunCMake/CheckLinkerFlag/RunCMakeTest.cmake
Brad King 64ac01451d Tests: Clarify RunCMake.Check* case names
Cases for `CheckSource{Compiles,Runs}` and `Check{Compiler,Linker}Flag`
cover the modules with the language as a parameter, not the
language-specific modules.
2022-10-06 10:29:42 -04:00

23 lines
451 B
CMake

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()