summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CheckSourceCompiles/CheckSourceCompilesFortran.cmake
blob: 48dc5255d0bb506d304cad64d94a965c5561d601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


enable_language (Fortran)
include(CheckSourceCompiles)

set(Fortran 1) # test that this is tolerated

check_source_compiles(Fortran [=[
      PROGRAM TEST_HAVE_PRINT
        PRINT *, 'Hello'
      END
]=] SHOULD_BUILD)

if(NOT SHOULD_BUILD)
  message(SEND_ERROR "Test fail for valid Fortran source.")
endif()