diff options
author | Brad King <brad.king@kitware.com> | 2019-01-15 18:15:37 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-15 18:15:44 (GMT) |
commit | bf1a1caefeceaaad8f86e613e086b244a569456b (patch) | |
tree | 2d1ead222b23bfa0d2b853abcdd9a94b180f574d /Help | |
parent | 11e43a19a47797ed539924022d7c54b2f92125e9 (diff) | |
parent | 10a1477b631d9173a32827a315aebf1941c87564 (diff) | |
download | CMake-bf1a1caefeceaaad8f86e613e086b244a569456b.zip CMake-bf1a1caefeceaaad8f86e613e086b244a569456b.tar.gz CMake-bf1a1caefeceaaad8f86e613e086b244a569456b.tar.bz2 |
Merge topic 'check-fortran-run'
10a1477b63 CheckFortranSourceRuns: Add module to check if Fortran code runs
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2714
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-modules.7.rst | 1 | ||||
-rw-r--r-- | Help/module/CheckFortranSourceRuns.rst | 1 | ||||
-rw-r--r-- | Help/release/dev/check-fortran-run.rst | 6 |
3 files changed, 8 insertions, 0 deletions
diff --git a/Help/manual/cmake-modules.7.rst b/Help/manual/cmake-modules.7.rst index 940186a..71a8b00 100644 --- a/Help/manual/cmake-modules.7.rst +++ b/Help/manual/cmake-modules.7.rst @@ -28,6 +28,7 @@ These modules are loaded using the :command:`include` command. /module/CheckFortranCompilerFlag /module/CheckFortranFunctionExists /module/CheckFortranSourceCompiles + /module/CheckFortranSourceRuns /module/CheckFunctionExists /module/CheckIPOSupported /module/CheckIncludeFileCXX diff --git a/Help/module/CheckFortranSourceRuns.rst b/Help/module/CheckFortranSourceRuns.rst new file mode 100644 index 0000000..a1bff70 --- /dev/null +++ b/Help/module/CheckFortranSourceRuns.rst @@ -0,0 +1 @@ +.. cmake-module:: ../../Modules/CheckFortranSourceRuns.cmake diff --git a/Help/release/dev/check-fortran-run.rst b/Help/release/dev/check-fortran-run.rst new file mode 100644 index 0000000..b5f6558 --- /dev/null +++ b/Help/release/dev/check-fortran-run.rst @@ -0,0 +1,6 @@ +check-fortran-run +----------------- + +* A :module:`CheckFortranSourceRuns` module was added to provide a + :command:`check_fortran_source_runs` command to check if a Fortran + source snippet compiles and runs. |