diff options
author | Brad King <brad.king@kitware.com> | 2011-08-31 14:24:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-08-31 14:24:43 (GMT) |
commit | 5c0c635a0947aa44a0e3edf65b73c61d9abced2d (patch) | |
tree | 589de0062302301e8c5e83437bfbe166bfe1e107 /Tests/Fortran | |
parent | 47a0c7542b07b7db8f466621fff28f47beaad7d0 (diff) | |
download | CMake-5c0c635a0947aa44a0e3edf65b73c61d9abced2d.zip CMake-5c0c635a0947aa44a0e3edf65b73c61d9abced2d.tar.gz CMake-5c0c635a0947aa44a0e3edf65b73c61d9abced2d.tar.bz2 |
Fortran: Add support for free- and fixed-form flags
Define a "Fortran_FORMAT" target and source file property. Initialize
the target property from a "CMAKE_Fortran_FORMAT" variable. Interpret
values "FIXED" and "FREE" to indicate the source file format. Append
corresponding flags to the compiler command line.
Diffstat (limited to 'Tests/Fortran')
-rw-r--r-- | Tests/Fortran/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt index c216529..ba0bdcc 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -161,8 +161,10 @@ if(CMAKE_Fortran_COMPILER_SUPPORTS_F90) add_executable(test_use_in_comment_fixedform test_use_in_comment_fixedform.f) + set_property(SOURCE test_use_in_comment_fixedform.f PROPERTY Fortran_FORMAT FIXED) add_executable(test_use_in_comment_freeform test_use_in_comment_freeform.f90) + set_property(SOURCE test_use_in_comment_freeform.f90 PROPERTY Fortran_FORMAT FREE) add_executable(test_in_interface in_interface/main.f90 |