cmake/Tests/RunCMake/CheckSourceRuns/CheckSourceRunsFortran.cmake

25 lines
574 B
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
enable_language (Fortran)
include(CheckSourceRuns)
set(Fortran 1) # test that this is tolerated
2024-04-14 22:45:38 +02:00
# lfortran < 1.24 cannot handle long file names.
if(CMAKE_Fortran_COMPILER_ID STREQUAL "LCC" AND CMAKE_Fortran_COMPILER_VERSION VERSION_LESS "1.24")
string(LENGTH "${CMAKE_CURRENT_BINARY_DIR}" _CCBD_LEN)
if(_CCBD_LEN GREATER_EQUAL 35)
return()
endif()
endif()
2021-09-14 00:13:48 +02:00
check_source_runs(Fortran [=[
PROGRAM TEST_HAVE_PRINT
PRINT *, 'Hello'
END
]=] SHOULD_BUILD)
if(NOT SHOULD_BUILD)
message(SEND_ERROR "Test fail for valid Fortran source.")
endif()