diff options
author | Brad King <brad.king@kitware.com> | 2021-06-24 13:12:07 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-06-24 13:12:15 (GMT) |
commit | 004a51e0c225873c31fcfc3fbff9b14abdb32db0 (patch) | |
tree | 968c0e14d471296fdc5bddd1f332e6c8d1ad49f9 /Help | |
parent | 4eaadbfd4a568c5adda5fb59f27c1f0c981fec55 (diff) | |
parent | fe3f846e1b88341529686ee7dd334b01fe9e705e (diff) | |
download | CMake-004a51e0c225873c31fcfc3fbff9b14abdb32db0.zip CMake-004a51e0c225873c31fcfc3fbff9b14abdb32db0.tar.gz CMake-004a51e0c225873c31fcfc3fbff9b14abdb32db0.tar.bz2 |
Merge topic 'fortran-compiler-intrinsics'
fe3f846e1b Makefiles: Add support for building Fortran intrinsics
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5518
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-properties.7.rst | 1 | ||||
-rw-r--r-- | Help/prop_tgt/Fortran_BUILDING_INSTRINSIC_MODULES.rst | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Help/manual/cmake-properties.7.rst b/Help/manual/cmake-properties.7.rst index 5f18a82..4212913 100644 --- a/Help/manual/cmake-properties.7.rst +++ b/Help/manual/cmake-properties.7.rst @@ -202,6 +202,7 @@ Properties on Targets /prop_tgt/EXPORT_NAME /prop_tgt/EXPORT_PROPERTIES /prop_tgt/FOLDER + /prop_tgt/Fortran_BUILDING_INSTRINSIC_MODULES /prop_tgt/Fortran_FORMAT /prop_tgt/Fortran_MODULE_DIRECTORY /prop_tgt/Fortran_PREPROCESS diff --git a/Help/prop_tgt/Fortran_BUILDING_INSTRINSIC_MODULES.rst b/Help/prop_tgt/Fortran_BUILDING_INSTRINSIC_MODULES.rst new file mode 100644 index 0000000..518bca7 --- /dev/null +++ b/Help/prop_tgt/Fortran_BUILDING_INSTRINSIC_MODULES.rst @@ -0,0 +1,14 @@ +Fortran_BUILDING_INSTRINSIC_MODULES +----------------------------------- + +Instructs the CMake Fortran preprocessor that the target is building +Fortran intrinsics for building a Fortran compiler. + +This property is off by default and should be turned only on projects +that build a Fortran compiler. It should not be turned on for projects +that use a Fortran compiler. + +Turning this property on will correctly add dependencies for building +Fortran intrinsic modules whereas turning the property off will ignore +Fortran intrinsic modules in the dependency graph as they are supplied +by the compiler itself. |