diff options
author | scivision <scivision@users.noreply.github.com> | 2024-03-29 14:28:34 (GMT) |
---|---|---|
committer | scivision <scivision@users.noreply.github.com> | 2024-03-29 19:29:59 (GMT) |
commit | 7fa0057c7446f40ec542d9a68d28b9fe5f6c3603 (patch) | |
tree | 201abd3e02314a229d0b83a24a4c1f97dce10be8 /Help | |
parent | 7e52f9d4e09cdc744eea150542d7637719dfc031 (diff) | |
download | CMake-7fa0057c7446f40ec542d9a68d28b9fe5f6c3603.zip CMake-7fa0057c7446f40ec542d9a68d28b9fe5f6c3603.tar.gz CMake-7fa0057c7446f40ec542d9a68d28b9fe5f6c3603.tar.bz2 |
Help: emphasize need for VS Integrations with oneAPI Fortran
Be more explicit that VS Integration is required to use
Intel Fortran with MSVC.
It is common that users do not have VS Integration installed because
oneAPI is then only usable with a narrow range of MSVC versions,
even when oneAPI is used by itself with MSVC as the required backend.
Without VS Integration, a wide range of MSVC versions work as the
backend to oneAPI on Windows.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/variable/CMAKE_GENERATOR_TOOLSET.rst | 4 | ||||
-rw-r--r-- | Help/variable/CMAKE_VS_PLATFORM_TOOLSET_FORTRAN.rst | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Help/variable/CMAKE_GENERATOR_TOOLSET.rst b/Help/variable/CMAKE_GENERATOR_TOOLSET.rst index b83fa01..ae1197d 100644 --- a/Help/variable/CMAKE_GENERATOR_TOOLSET.rst +++ b/Help/variable/CMAKE_GENERATOR_TOOLSET.rst @@ -51,8 +51,8 @@ Supported pairs are: ``fortran=<compiler>`` .. versionadded:: 3.29 - Specify the Fortran compiler to use, among those that integrate with VS. - The value may be one of: + Specify the Fortran compiler to use, among those that have the required + Visual Studio Integration feature installed. The value may be one of: ``ifort`` Intel classic Fortran compiler. diff --git a/Help/variable/CMAKE_VS_PLATFORM_TOOLSET_FORTRAN.rst b/Help/variable/CMAKE_VS_PLATFORM_TOOLSET_FORTRAN.rst index e0ecb12..c7e4148 100644 --- a/Help/variable/CMAKE_VS_PLATFORM_TOOLSET_FORTRAN.rst +++ b/Help/variable/CMAKE_VS_PLATFORM_TOOLSET_FORTRAN.rst @@ -6,7 +6,7 @@ CMAKE_VS_PLATFORM_TOOLSET_FORTRAN Fortran compiler to be used by Visual Studio projects. :ref:`Visual Studio Generators` support selecting among Fortran compilers -whose Visual Studio Integration is installed. The compiler may be specified -by a field in :variable:`CMAKE_GENERATOR_TOOLSET` of the form ``fortran=...``. -CMake provides the selected Fortran compiler in this variable. -The value may be empty if the field was not specified. +that have the required Visual Studio Integration feature installed. The +compiler may be specified by a field in :variable:`CMAKE_GENERATOR_TOOLSET` of +the form ``fortran=...``. CMake provides the selected Fortran compiler in this +variable. The value may be empty if the field was not specified. |