https://github.com/Kitware/CMake
Revision 7fa0057c7446f40ec542d9a68d28b9fe5f6c3603 authored by scivision on 29 March 2024, 14:28:34 UTC, committed by scivision on 29 March 2024, 19:29:59 UTC
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.
1 parent 7e52f9d
Raw File
Tip revision: 7fa0057c7446f40ec542d9a68d28b9fe5f6c3603 authored by scivision on 29 March 2024, 14:28:34 UTC
Help: emphasize need for VS Integrations with oneAPI Fortran
Tip revision: 7fa0057
CTestConfig.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.

# If changing this file, also update Utilities/Sphinx/CTestConfig.cmake

set(CTEST_PROJECT_NAME "CMake")
set(CTEST_NIGHTLY_START_TIME "1:00:00 UTC")

if(NOT CTEST_DROP_METHOD STREQUAL "https")
  set(CTEST_DROP_METHOD "http")
endif()
set(CTEST_DROP_SITE "open.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=CMake")
set(CTEST_DROP_SITE_CDASH TRUE)
set(CTEST_CDASH_VERSION "1.6")
set(CTEST_CDASH_QUERY_VERSION TRUE)
back to top