https://github.com/Kitware/CMake
Raw File
Tip revision: 34a6da34b8bb909486cda9298f2d7fbc88ed6e7f authored by Brad King on 04 October 2022, 17:26:33 UTC
CMake 3.23.4
Tip revision: 34a6da3
runtest.cmake.in
get_filename_component(MINGW_PATH "@MINGW_GFORTRAN@" PATH)
if(NOT EXISTS "${MINGW_PATH}")
  set(test_exe
    "@VSGNUFortran_BINARY_DIR@/bin/c_using_fortran@CMAKE_EXECUTABLE_SUFFIX@")
  message("run: ${test_exe}")
  execute_process(COMMAND "${test_exe}"
    RESULT_VARIABLE res)
  if(NOT "${res}" EQUAL 0)
    message(FATAL_ERROR "${test_exe} returned a non 0 value")
  endif()
  return()
endif()
file(TO_NATIVE_PATH "${MINGW_PATH}" MINGW_PATH)
string(REPLACE "\\" "\\\\" MINGW_PATH "${MINGW_PATH}")
message("${MINGW_PATH}")
set(test_exe "@VSGNUFortran_BINARY_DIR@/bin/c_using_fortran.exe")
set(ENV{PATH} "${MINGW_PATH};$ENV{PATH}")
message("run ${test_exe}")
execute_process(COMMAND "${test_exe}"
  RESULT_VARIABLE res)
if(NOT "${res}" EQUAL 0)
  message(FATAL_ERROR "${test_exe} returned a non 0 value")
endif()
back to top