From 068ea4bfc1fcf5b90395660749a5de4e3b5333bd Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 17:35:34 -0500 Subject: cmake-gui: Update credits in About dialog to reflect status quo --- Source/QtDialog/CMakeSetupDialog.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index a7ae291..64ae722 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -1024,8 +1024,7 @@ void CMakeSetupDialog::doAbout() "CMake suite maintained and supported by Kitware (kitware.com/cmake).\n" "Distributed under terms of the BSD 3-Clause License.\n" "\n" - "CMake GUI maintained by csimsoft,\n" - "built using Qt %2 (qt-project.org).\n" + "CMake GUI built using Qt %2 (qt-project.org).\n" #ifdef USE_LGPL "\n" "The Qt Toolkit is Copyright (C) The Qt Company Ltd.\n" -- cgit v0.12 From 3035ee4ff37c82202fce44913ccf273b0d636490 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 19:32:57 -0500 Subject: CMake: De-duplicate extraction of copyright line from license file --- CMakeLists.txt | 1 + Source/CMakeCopyright.cmake | 10 ++++++++++ Source/QtDialog/CMakeLists.txt | 5 +---- Utilities/Sphinx/CMakeLists.txt | 6 ++---- 4 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 Source/CMakeCopyright.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 749404d..2887d3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -386,6 +386,7 @@ endif() # The main section of the CMakeLists file # #----------------------------------------------------------------------- +include(Source/CMakeCopyright.cmake) include(Source/CMakeVersion.cmake) include(CTest) diff --git a/Source/CMakeCopyright.cmake b/Source/CMakeCopyright.cmake new file mode 100644 index 0000000..8965cf6 --- /dev/null +++ b/Source/CMakeCopyright.cmake @@ -0,0 +1,10 @@ +# CMake license file and copyright line. +set(CMake_LICENSE_FILE "${CMake_SOURCE_DIR}/Copyright.txt") +file(STRINGS "${CMake_LICENSE_FILE}" CMake_COPYRIGHT_LINE LIMIT_COUNT 1 REGEX "^Copyright ") +if(NOT CMake_COPYRIGHT_LINE MATCHES [[^Copyright 2000-2[0-9][0-9][0-9] Kitware, Inc\. and Contributors$]]) + message(FATAL_ERROR + "The CMake license file:\n" + " ${CMake_LICENSE_FILE}\n" + "does not contain a copyright line matching the expected pattern." + ) +endif() diff --git a/Source/QtDialog/CMakeLists.txt b/Source/QtDialog/CMakeLists.txt index 55f40bf..187fedc 100644 --- a/Source/QtDialog/CMakeLists.txt +++ b/Source/QtDialog/CMakeLists.txt @@ -306,15 +306,12 @@ Checks: '-*,llvm-twine-local' ") if(APPLE) - file(STRINGS "${CMake_SOURCE_DIR}/Copyright.txt" copyright_line - LIMIT_COUNT 1 REGEX "^Copyright 2000-20[0-9][0-9] Kitware") - set_target_properties(cmake-gui PROPERTIES OUTPUT_NAME CMake MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in" MACOSX_BUNDLE_SHORT_VERSION_STRING "${CMAKE_BUNDLE_VERSION}" # TBD: MACOSX_BUNDLE_BUNDLE_VERSION "${CMAKE_BUNDLE_VERSION}" - MACOSX_BUNDLE_COPYRIGHT "${copyright_line}" + MACOSX_BUNDLE_COPYRIGHT "${CMake_COPYRIGHT_LINE}" MACOSX_BUNDLE_GUI_IDENTIFIER "org.cmake.cmake" ) diff --git a/Utilities/Sphinx/CMakeLists.txt b/Utilities/Sphinx/CMakeLists.txt index a919b91..e7a53ab 100644 --- a/Utilities/Sphinx/CMakeLists.txt +++ b/Utilities/Sphinx/CMakeLists.txt @@ -7,6 +7,7 @@ if(NOT CMake_SOURCE_DIR) get_filename_component(tmp "${CMAKE_CURRENT_SOURCE_DIR}" PATH) get_filename_component(CMake_SOURCE_DIR "${tmp}" PATH) include(${CMake_SOURCE_DIR}/Modules/CTestUseLaunchers.cmake) + include(${CMake_SOURCE_DIR}/Source/CMakeCopyright.cmake) include(${CMake_SOURCE_DIR}/Source/CMakeVersion.cmake) include(${CMake_SOURCE_DIR}/Source/CMakeInstallDestinations.cmake) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake @ONLY) @@ -50,10 +51,7 @@ elseif(NOT SPHINX_EXECUTABLE) message(FATAL_ERROR "SPHINX_EXECUTABLE (sphinx-build) is not found!") endif() -set(copyright_line_regex "^Copyright (2000-20[0-9][0-9] Kitware.*)") -file(STRINGS "${CMake_SOURCE_DIR}/Copyright.txt" copyright_line - LIMIT_COUNT 1 REGEX "${copyright_line_regex}") -if(copyright_line MATCHES "${copyright_line_regex}") +if(CMake_COPYRIGHT_LINE MATCHES "^Copyright (.*)$") set(conf_copyright "${CMAKE_MATCH_1}") else() set(conf_copyright "Kitware, Inc.") -- cgit v0.12 From 759cd843dba287625e6768ced97ebb87c10e2da5 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 19:39:50 -0500 Subject: CMake: De-duplicate references to license file --- CMakeCPack.cmake | 4 ++-- CMakeLists.txt | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeCPack.cmake b/CMakeCPack.cmake index a0c0e54..e6bd57a 100644 --- a/CMakeCPack.cmake +++ b/CMakeCPack.cmake @@ -14,10 +14,10 @@ if(CMake_INSTALL_DEPENDENCIES) include(${CMake_SOURCE_DIR}/Modules/InstallRequiredSystemLibraries.cmake) endif() +set(CPACK_RESOURCE_FILE_LICENSE "${CMake_LICENSE_FILE}") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CMake is a build tool") set(CPACK_PACKAGE_VENDOR "Kitware") -set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/Copyright.txt") -set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/Copyright.txt") +set(CPACK_PACKAGE_DESCRIPTION_FILE "${CPACK_RESOURCE_FILE_LICENSE}") set(CPACK_PACKAGE_NAME "${CMAKE_PROJECT_NAME}") set(CPACK_PACKAGE_VERSION "${CMake_VERSION}") set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME}") diff --git a/CMakeLists.txt b/CMakeLists.txt index 2887d3e..d7fd071 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -534,7 +534,9 @@ endif() if(NOT CMake_TEST_EXTERNAL_CMAKE) # Install license file as it requires. - install(FILES Copyright.txt DESTINATION ${CMAKE_DOC_DIR}) + install(FILES + "${CMake_LICENSE_FILE}" + DESTINATION ${CMAKE_DOC_DIR}) # Install script directories. install( -- cgit v0.12 From a9190bd38d96b7409be9ec1f3f56d2c6b3d58c85 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 21:06:47 -0500 Subject: CMake: Prepare dedicated license file for our own CPack configuration The CPack WIX Generator requires a `.txt` file extension. Provide that regardless of the actual license file extension. --- CMakeCPack.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeCPack.cmake b/CMakeCPack.cmake index e6bd57a..b88da62 100644 --- a/CMakeCPack.cmake +++ b/CMakeCPack.cmake @@ -14,7 +14,9 @@ if(CMake_INSTALL_DEPENDENCIES) include(${CMake_SOURCE_DIR}/Modules/InstallRequiredSystemLibraries.cmake) endif() -set(CPACK_RESOURCE_FILE_LICENSE "${CMake_LICENSE_FILE}") +set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/LICENSE.txt") +configure_file("${CMake_LICENSE_FILE}" "${CPACK_RESOURCE_FILE_LICENSE}" COPYONLY) + set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CMake is a build tool") set(CPACK_PACKAGE_VENDOR "Kitware") set(CPACK_PACKAGE_DESCRIPTION_FILE "${CPACK_RESOURCE_FILE_LICENSE}") -- cgit v0.12 From 97eb4ee9667da8cda42c685efb0dfff4b9b95187 Mon Sep 17 00:00:00 2001 From: Konstantin Podsvirov Date: Tue, 25 Feb 2025 20:25:24 +0300 Subject: Copyright.txt: Update email Backport commit 953daaac85 (Copyright.txt: Update email, 2025-02-25). --- Copyright.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Copyright.txt b/Copyright.txt index f32a818..fe51320 100644 --- a/Copyright.txt +++ b/Copyright.txt @@ -68,7 +68,7 @@ The following individuals and institutions are among the Contributors: * Jordan Williams * Julien Schueller * Kelly Thompson -* Konstantin Podsvirov +* Konstantin Podsvirov * Laurent Montel * Mario Bensi * Martin Gräßlin -- cgit v0.12 From afeca383d6598da3fd01d3a48ec2e8ee6c4b240d Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 20:43:00 -0500 Subject: Copyright.txt: Drop outdated content around copyright notice line The modern convention for BSD 3-Clause license notices does not include the name of the project or "All rights reserved". --- Copyright.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/Copyright.txt b/Copyright.txt index fe51320..7c98c81 100644 --- a/Copyright.txt +++ b/Copyright.txt @@ -1,6 +1,4 @@ -CMake - Cross Platform Makefile Generator Copyright 2000-2025 Kitware, Inc. and Contributors -All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions -- cgit v0.12 From 834c9236e4dc1be7d1562f7458200f02a0b62763 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 20:24:39 -0500 Subject: Copyright.txt: Remove excess indentation --- Copyright.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Copyright.txt b/Copyright.txt index 7c98c81..c8dc707 100644 --- a/Copyright.txt +++ b/Copyright.txt @@ -121,14 +121,14 @@ documented in corresponding subdirectories or source files. CMake was initially developed by Kitware with the following sponsorship: - * National Library of Medicine at the National Institutes of Health - as part of the Insight Segmentation and Registration Toolkit (ITK). +* National Library of Medicine at the National Institutes of Health + as part of the Insight Segmentation and Registration Toolkit (ITK). - * US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel - Visualization Initiative. +* US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel + Visualization Initiative. - * National Alliance for Medical Image Computing (NAMIC) is funded by the - National Institutes of Health through the NIH Roadmap for Medical Research, - Grant U54 EB005149. +* National Alliance for Medical Image Computing (NAMIC) is funded by the + National Institutes of Health through the NIH Roadmap for Medical Research, + Grant U54 EB005149. - * Kitware, Inc. +* Kitware, Inc. -- cgit v0.12 From 53175648947e906c3a6d9ca48039bd6fa16cc96c Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 20:25:01 -0500 Subject: Copyright.txt: Add contributor section headers --- Copyright.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Copyright.txt b/Copyright.txt index c8dc707..b7271ba 100644 --- a/Copyright.txt +++ b/Copyright.txt @@ -27,9 +27,10 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- +Contributors +************ -The following individuals and institutions are among the Contributors: +The following individuals and institutions are among the contributors: * Aaron C. Meadows * Adriaan de Groot @@ -112,12 +113,16 @@ The following individuals and institutions are among the Contributors: See version control history for details of individual contributions. +Copyright +========= + The above copyright and license notice applies to distributions of CMake in source and binary form. Third-party software packages supplied with CMake under compatible licenses provide their own copyright notices documented in corresponding subdirectories or source files. ------------------------------------------------------------------------------- +Sponsorship +=========== CMake was initially developed by Kitware with the following sponsorship: -- cgit v0.12 From 2d42a5444f859891b6598c76ea5d51510013565e Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 20:58:26 -0500 Subject: LICENSE: Rename Copyright.txt to LICENSE.rst The name `LICENSE` is now more conventional. Format as reStructuredText to improve rendering. --- .codespellrc | 2 +- .gitlab/ci/cmake_version_update.sh | 2 +- .typos.toml | 2 +- CONTRIBUTING.rst | 4 +- Copyright.txt | 139 ---------------------------- LICENSE.rst | 139 ++++++++++++++++++++++++++++ README.rst | 4 +- Source/CMakeCopyright.cmake | 2 +- Source/CMakeVersion.bash | 2 +- Tests/CMakeCopyright.cmake | 8 +- Tests/CMakeTests/ModuleNoticesTest.cmake.in | 2 +- bootstrap | 2 +- 12 files changed, 154 insertions(+), 154 deletions(-) delete mode 100644 Copyright.txt create mode 100644 LICENSE.rst diff --git a/.codespellrc b/.codespellrc index 2551cca..6b1398b 100644 --- a/.codespellrc +++ b/.codespellrc @@ -10,8 +10,8 @@ skip = .git, .typos.toml, build, - Copyright.txt, CTestCustom.cmake.in, + LICENSE.rst, Modules/Internal/CPack/NSIS.template.in, Source/CursesDialog/form/*, Source/kwsys/*, diff --git a/.gitlab/ci/cmake_version_update.sh b/.gitlab/ci/cmake_version_update.sh index 3c05dfe..e73419d 100755 --- a/.gitlab/ci/cmake_version_update.sh +++ b/.gitlab/ci/cmake_version_update.sh @@ -25,7 +25,7 @@ for try in $(seq $n); do git reset -q --hard FETCH_HEAD Source/CMakeVersion.bash git update-index -q --ignore-missing --refresh - modified=$(git diff-index --name-only HEAD -- "Source/CMakeVersion.cmake" "Copyright.txt") + modified=$(git diff-index --name-only HEAD -- "Source/CMakeVersion.cmake" "LICENSE.rst") if test -n "$modified"; then echo "version changed" git add -u diff --git a/.typos.toml b/.typos.toml index c06745a..d1ccb12 100644 --- a/.typos.toml +++ b/.typos.toml @@ -57,7 +57,7 @@ SEH = "SEH" ignore-hidden = false ignore-dot = false extend-exclude = [ - "Copyright.txt" + "LICENSE.rst" # Exclude third-party sources. , "Source/CursesDialog/form/" , "Source/kwsys/" diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 88f39f1..7247467 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -74,6 +74,6 @@ License We do not require any formal copyright assignment or contributor license agreement. Any contributions intentionally sent upstream are presumed to be offered under terms of the OSI-approved BSD 3-clause License. -See `Copyright.txt`_ for details. +See `LICENSE.rst`_ for details. -.. _`Copyright.txt`: Copyright.txt +.. _`LICENSE.rst`: LICENSE.rst diff --git a/Copyright.txt b/Copyright.txt deleted file mode 100644 index b7271ba..0000000 --- a/Copyright.txt +++ /dev/null @@ -1,139 +0,0 @@ -Copyright 2000-2025 Kitware, Inc. and Contributors - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of Kitware, Inc. nor the names of Contributors - may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Contributors -************ - -The following individuals and institutions are among the contributors: - -* Aaron C. Meadows -* Adriaan de Groot -* Aleksey Avdeev -* Alexander Neundorf -* Alexander Smorkalov -* Alexey Sokolov -* Alex Merry -* Alex Turbov -* Andreas Pakulat -* Andreas Schneider -* André Rigland Brodtkorb -* Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf -* Benjamin Eikel -* Bjoern Ricks -* Brad Hards -* Christopher Harvey -* Christoph Grüninger -* Clement Creusot -* Daniel Blezek -* Daniel Pfeifer -* Dawid Wróbel -* Enrico Scholz -* Eran Ifrah -* Esben Mose Hansen, Ange Optimization ApS -* Geoffrey Viola -* Google Inc -* Gregor Jasny -* Helio Chissini de Castro -* Ilya Lavrenov -* Insight Software Consortium -* Intel Corporation -* Jan Woetzel -* Jordan Williams -* Julien Schueller -* Kelly Thompson -* Konstantin Podsvirov -* Laurent Montel -* Mario Bensi -* Martin Gräßlin -* Mathieu Malaterre -* Matthaeus G. Chajdas -* Matthias Kretz -* Matthias Maennich -* Michael Hirsch, Ph.D. -* Michael Stürmer -* Miguel A. Figueroa-Villanueva -* Mike Durso -* Mike Jackson -* Mike McQuaid -* Nicolas Bock -* Nicolas Despres -* Nikita Krupen'ko -* NVIDIA Corporation -* OpenGamma Ltd. -* Patrick Stotko -* Per Øyvind Karlsen -* Peter Collingbourne -* Petr Gotthard -* Philip Lowman -* Philippe Proulx -* Raffi Enficiaud, Max Planck Society -* Raumfeld -* Roger Leigh -* Rolf Eike Beer -* Roman Donchenko -* Roman Kharitonov -* Ruslan Baratov -* Sebastian Holtermann -* Stephen Kelly -* Sylvain Joubert -* The Qt Company Ltd. -* Thomas Sondergaard -* Tobias Hunger -* Todd Gamblin -* Tristan Carel -* University of Dundee -* Vadim Zhukov -* Will Dicharry - -See version control history for details of individual contributions. - -Copyright -========= - -The above copyright and license notice applies to distributions of -CMake in source and binary form. Third-party software packages supplied -with CMake under compatible licenses provide their own copyright notices -documented in corresponding subdirectories or source files. - -Sponsorship -=========== - -CMake was initially developed by Kitware with the following sponsorship: - -* National Library of Medicine at the National Institutes of Health - as part of the Insight Segmentation and Registration Toolkit (ITK). - -* US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel - Visualization Initiative. - -* National Alliance for Medical Image Computing (NAMIC) is funded by the - National Institutes of Health through the NIH Roadmap for Medical Research, - Grant U54 EB005149. - -* Kitware, Inc. diff --git a/LICENSE.rst b/LICENSE.rst new file mode 100644 index 0000000..b7271ba --- /dev/null +++ b/LICENSE.rst @@ -0,0 +1,139 @@ +Copyright 2000-2025 Kitware, Inc. and Contributors + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +* Neither the name of Kitware, Inc. nor the names of Contributors + may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Contributors +************ + +The following individuals and institutions are among the contributors: + +* Aaron C. Meadows +* Adriaan de Groot +* Aleksey Avdeev +* Alexander Neundorf +* Alexander Smorkalov +* Alexey Sokolov +* Alex Merry +* Alex Turbov +* Andreas Pakulat +* Andreas Schneider +* André Rigland Brodtkorb +* Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf +* Benjamin Eikel +* Bjoern Ricks +* Brad Hards +* Christopher Harvey +* Christoph Grüninger +* Clement Creusot +* Daniel Blezek +* Daniel Pfeifer +* Dawid Wróbel +* Enrico Scholz +* Eran Ifrah +* Esben Mose Hansen, Ange Optimization ApS +* Geoffrey Viola +* Google Inc +* Gregor Jasny +* Helio Chissini de Castro +* Ilya Lavrenov +* Insight Software Consortium +* Intel Corporation +* Jan Woetzel +* Jordan Williams +* Julien Schueller +* Kelly Thompson +* Konstantin Podsvirov +* Laurent Montel +* Mario Bensi +* Martin Gräßlin +* Mathieu Malaterre +* Matthaeus G. Chajdas +* Matthias Kretz +* Matthias Maennich +* Michael Hirsch, Ph.D. +* Michael Stürmer +* Miguel A. Figueroa-Villanueva +* Mike Durso +* Mike Jackson +* Mike McQuaid +* Nicolas Bock +* Nicolas Despres +* Nikita Krupen'ko +* NVIDIA Corporation +* OpenGamma Ltd. +* Patrick Stotko +* Per Øyvind Karlsen +* Peter Collingbourne +* Petr Gotthard +* Philip Lowman +* Philippe Proulx +* Raffi Enficiaud, Max Planck Society +* Raumfeld +* Roger Leigh +* Rolf Eike Beer +* Roman Donchenko +* Roman Kharitonov +* Ruslan Baratov +* Sebastian Holtermann +* Stephen Kelly +* Sylvain Joubert +* The Qt Company Ltd. +* Thomas Sondergaard +* Tobias Hunger +* Todd Gamblin +* Tristan Carel +* University of Dundee +* Vadim Zhukov +* Will Dicharry + +See version control history for details of individual contributions. + +Copyright +========= + +The above copyright and license notice applies to distributions of +CMake in source and binary form. Third-party software packages supplied +with CMake under compatible licenses provide their own copyright notices +documented in corresponding subdirectories or source files. + +Sponsorship +=========== + +CMake was initially developed by Kitware with the following sponsorship: + +* National Library of Medicine at the National Institutes of Health + as part of the Insight Segmentation and Registration Toolkit (ITK). + +* US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel + Visualization Initiative. + +* National Alliance for Medical Image Computing (NAMIC) is funded by the + National Institutes of Health through the NIH Roadmap for Medical Research, + Grant U54 EB005149. + +* Kitware, Inc. diff --git a/README.rst b/README.rst index 8a471db..3eefaf9 100644 --- a/README.rst +++ b/README.rst @@ -22,9 +22,9 @@ License ======= CMake is distributed under the OSI-approved BSD 3-clause License. -See `Copyright.txt`_ for details. +See `LICENSE.rst`_ for details. -.. _`Copyright.txt`: Copyright.txt +.. _`LICENSE.rst`: LICENSE.rst Building CMake ============== diff --git a/Source/CMakeCopyright.cmake b/Source/CMakeCopyright.cmake index 8965cf6..ce0d2ed 100644 --- a/Source/CMakeCopyright.cmake +++ b/Source/CMakeCopyright.cmake @@ -1,5 +1,5 @@ # CMake license file and copyright line. -set(CMake_LICENSE_FILE "${CMake_SOURCE_DIR}/Copyright.txt") +set(CMake_LICENSE_FILE "${CMake_SOURCE_DIR}/LICENSE.rst") file(STRINGS "${CMake_LICENSE_FILE}" CMake_COPYRIGHT_LINE LIMIT_COUNT 1 REGEX "^Copyright ") if(NOT CMake_COPYRIGHT_LINE MATCHES [[^Copyright 2000-2[0-9][0-9][0-9] Kitware, Inc\. and Contributors$]]) message(FATAL_ERROR diff --git a/Source/CMakeVersion.bash b/Source/CMakeVersion.bash index 59f8ec2..f0e4996 100755 --- a/Source/CMakeVersion.bash +++ b/Source/CMakeVersion.bash @@ -12,6 +12,6 @@ if version_patch_line=$(grep -E '^set\(CMake_VERSION_PATCH [0-9]{8}\)' "$version if [[ "$version_patch_year" =~ ^[0-9][0-9][0-9][0-9]$ ]] ; then sed -i -e ' s/\(^Copyright 2000-\)[0-9][0-9][0-9][0-9]\( .*\)/\1'"$version_patch_year"'\2/ - ' "${BASH_SOURCE%/*}/../Copyright.txt" + ' "${BASH_SOURCE%/*}/../LICENSE.rst" fi fi diff --git a/Tests/CMakeCopyright.cmake b/Tests/CMakeCopyright.cmake index a7201e9..2c3c95d 100644 --- a/Tests/CMakeCopyright.cmake +++ b/Tests/CMakeCopyright.cmake @@ -1,21 +1,21 @@ if(CMAKE_VERSION MATCHES "\\.(20[0-9][0-9])[0-9][0-9][0-9][0-9](-|$)") set(version_year "${CMAKE_MATCH_1}") set(copyright_line_regex "^Copyright 2000-(20[0-9][0-9]) Kitware") - file(STRINGS "${CMAKE_CURRENT_LIST_DIR}/../Copyright.txt" copyright_line + file(STRINGS "${CMAKE_CURRENT_LIST_DIR}/../LICENSE.rst" copyright_line LIMIT_COUNT 1 REGEX "${copyright_line_regex}") if(copyright_line MATCHES "${copyright_line_regex}") set(copyright_year "${CMAKE_MATCH_1}") if(copyright_year LESS version_year) - message(FATAL_ERROR "Copyright.txt contains\n" + message(FATAL_ERROR "LICENSE.rst contains\n" " ${copyright_line}\n" "but the current version year is ${version_year}.") else() - message(STATUS "PASSED: Copyright.txt contains\n" + message(STATUS "PASSED: LICENSE.rst contains\n" " ${copyright_line}\n" "and the current version year is ${version_year}.") endif() else() - message(FATAL_ERROR "Copyright.txt has no Copyright line of expected format!") + message(FATAL_ERROR "LICENSE.rst has no Copyright line of expected format!") endif() else() message(STATUS "SKIPPED: CMAKE_VERSION does not know the year: ${CMAKE_VERSION}") diff --git a/Tests/CMakeTests/ModuleNoticesTest.cmake.in b/Tests/CMakeTests/ModuleNoticesTest.cmake.in index 7ae6607..a9efd50 100644 --- a/Tests/CMakeTests/ModuleNoticesTest.cmake.in +++ b/Tests/CMakeTests/ModuleNoticesTest.cmake.in @@ -1,6 +1,6 @@ # Regex to match license notices at the top of module files. set(notice_regex [[^# Distributed under the OSI-approved BSD 3-Clause License\. See accompanying -# file Copyright\.txt or https://cmake\.org/licensing for details\. +# file LICENSE\.rst or https://cmake\.org/licensing for details\. ]]) string(REPLACE "\n" "\r?\n" notice_regex "${notice_regex}") diff --git a/bootstrap b/bootstrap index 644260b..e69f1eb 100755 --- a/bootstrap +++ b/bootstrap @@ -64,7 +64,7 @@ if test "$cmake_version_rc" != ""; then cmake_version="${cmake_version}-rc${cmake_version_rc}" fi -cmake_copyright="`grep '^Copyright .* Kitware' "${cmake_source_dir}/Copyright.txt"`" +cmake_copyright="`grep '^Copyright .* Kitware' "${cmake_source_dir}/LICENSE.rst"`" cmake_bin_dir_keyword="OTHER" cmake_data_dir_keyword="OTHER" -- cgit v0.12 From de273b2e115974a012a6204ffee046dc9ce77586 Mon Sep 17 00:00:00 2001 From: Kitware Robot Date: Sun, 2 Mar 2025 21:08:52 -0500 Subject: LICENSE: Replace references to Copyright.txt with LICENSE.rst ``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ``` --- .hooks-config | 2 +- Auxiliary/cmake-mode.el | 2 +- Auxiliary/cmake.m4 | 2 +- CMakeCPack.cmake | 2 +- CMakeLists.txt | 2 +- CTestConfig.cmake | 2 +- CompileFlags.cmake | 2 +- DartConfig.cmake | 2 +- Help/dev/documentation.rst | 4 ++-- Help/manual/cmake-developer.7.rst | 2 +- Modules/AddFileDependencies.cmake | 2 +- Modules/AndroidTestUtilities.cmake | 2 +- Modules/AndroidTestUtilities/PushToAndroidDevice.cmake | 2 +- Modules/BundleUtilities.cmake | 2 +- Modules/CMake.cmake | 2 +- Modules/CMakeASM-ATTInformation.cmake | 2 +- Modules/CMakeASMInformation.cmake | 2 +- Modules/CMakeASM_MARMASMInformation.cmake | 2 +- Modules/CMakeASM_MASMInformation.cmake | 2 +- Modules/CMakeASM_NASMInformation.cmake | 2 +- Modules/CMakeAddFortranSubdirectory.cmake | 2 +- Modules/CMakeBackwardCompatibilityC.cmake | 2 +- Modules/CMakeBackwardCompatibilityCXX.cmake | 2 +- Modules/CMakeBorlandFindMake.cmake | 2 +- Modules/CMakeCInformation.cmake | 2 +- Modules/CMakeCSharpInformation.cmake | 2 +- Modules/CMakeCUDAInformation.cmake | 2 +- Modules/CMakeCXXInformation.cmake | 2 +- Modules/CMakeCheckCompilerFlagCommonPatterns.cmake | 2 +- Modules/CMakeCommonLanguageInclude.cmake | 2 +- Modules/CMakeCompilerIdDetection.cmake | 2 +- Modules/CMakeDependentOption.cmake | 2 +- Modules/CMakeDetermineASM-ATTCompiler.cmake | 2 +- Modules/CMakeDetermineASMCompiler.cmake | 2 +- Modules/CMakeDetermineASM_MARMASMCompiler.cmake | 2 +- Modules/CMakeDetermineASM_MASMCompiler.cmake | 2 +- Modules/CMakeDetermineASM_NASMCompiler.cmake | 2 +- Modules/CMakeDetermineCCompiler.cmake | 2 +- Modules/CMakeDetermineCSharpCompiler.cmake | 2 +- Modules/CMakeDetermineCUDACompiler.cmake | 2 +- Modules/CMakeDetermineCXXCompiler.cmake | 2 +- Modules/CMakeDetermineCompiler.cmake | 2 +- Modules/CMakeDetermineCompilerABI.cmake | 2 +- Modules/CMakeDetermineCompilerId.cmake | 2 +- Modules/CMakeDetermineCompilerSupport.cmake | 2 +- Modules/CMakeDetermineFortranCompiler.cmake | 2 +- Modules/CMakeDetermineHIPCompiler.cmake | 2 +- Modules/CMakeDetermineISPCCompiler.cmake | 2 +- Modules/CMakeDetermineJavaCompiler.cmake | 2 +- Modules/CMakeDetermineOBJCCompiler.cmake | 2 +- Modules/CMakeDetermineOBJCXXCompiler.cmake | 2 +- Modules/CMakeDetermineRCCompiler.cmake | 2 +- Modules/CMakeDetermineSwiftCompiler.cmake | 2 +- Modules/CMakeDetermineSystem.cmake | 2 +- Modules/CMakeDetermineVSServicePack.cmake | 2 +- Modules/CMakeExpandImportedTargets.cmake | 2 +- Modules/CMakeExportBuildSettings.cmake | 2 +- .../CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake | 2 +- Modules/CMakeFindBinUtils.cmake | 2 +- Modules/CMakeFindCodeBlocks.cmake | 2 +- Modules/CMakeFindDependencyMacro.cmake | 2 +- Modules/CMakeFindEclipseCDT4.cmake | 2 +- Modules/CMakeFindFrameworks.cmake | 2 +- Modules/CMakeFindJavaCommon.cmake | 2 +- Modules/CMakeFindKate.cmake | 2 +- Modules/CMakeFindPackageMode.cmake | 2 +- Modules/CMakeFindSublimeText2.cmake | 2 +- Modules/CMakeFindWMake.cmake | 2 +- Modules/CMakeFindXCode.cmake | 2 +- Modules/CMakeForceCompiler.cmake | 2 +- Modules/CMakeFortranInformation.cmake | 2 +- Modules/CMakeGenericSystem.cmake | 2 +- Modules/CMakeGraphVizOptions.cmake | 2 +- Modules/CMakeHIPInformation.cmake | 2 +- Modules/CMakeIOSInstallCombined.cmake | 2 +- Modules/CMakeISPCInformation.cmake | 2 +- Modules/CMakeImportBuildSettings.cmake | 2 +- Modules/CMakeInitializeConfigs.cmake | 2 +- Modules/CMakeJOMFindMake.cmake | 2 +- Modules/CMakeJavaInformation.cmake | 2 +- Modules/CMakeLanguageInformation.cmake | 2 +- Modules/CMakeMSYSFindMake.cmake | 2 +- Modules/CMakeMinGWFindMake.cmake | 2 +- Modules/CMakeNMakeFindMake.cmake | 2 +- Modules/CMakeNinjaFindMake.cmake | 2 +- Modules/CMakeOBJCInformation.cmake | 2 +- Modules/CMakeOBJCXXInformation.cmake | 2 +- Modules/CMakePackageConfigHelpers.cmake | 2 +- Modules/CMakeParseArguments.cmake | 2 +- Modules/CMakeParseImplicitIncludeInfo.cmake | 2 +- Modules/CMakeParseImplicitLinkInfo.cmake | 2 +- Modules/CMakeParseLibraryArchitecture.cmake | 2 +- Modules/CMakePrintHelpers.cmake | 2 +- Modules/CMakePrintSystemInformation.cmake | 2 +- Modules/CMakePushCheckState.cmake | 2 +- Modules/CMakeRCInformation.cmake | 2 +- Modules/CMakeSwiftCompiler.cmake.in | 2 +- Modules/CMakeSwiftInformation.cmake | 2 +- Modules/CMakeSystemSpecificInformation.cmake | 2 +- Modules/CMakeSystemSpecificInitialize.cmake | 2 +- Modules/CMakeTestASM-ATTCompiler.cmake | 2 +- Modules/CMakeTestASMCompiler.cmake | 2 +- Modules/CMakeTestASM_MARMASMCompiler.cmake | 2 +- Modules/CMakeTestASM_MASMCompiler.cmake | 2 +- Modules/CMakeTestASM_NASMCompiler.cmake | 2 +- Modules/CMakeTestCCompiler.cmake | 2 +- Modules/CMakeTestCSharpCompiler.cmake | 2 +- Modules/CMakeTestCUDACompiler.cmake | 2 +- Modules/CMakeTestCXXCompiler.cmake | 2 +- Modules/CMakeTestCompilerCommon.cmake | 2 +- Modules/CMakeTestFortranCompiler.cmake | 2 +- Modules/CMakeTestHIPCompiler.cmake | 2 +- Modules/CMakeTestISPCCompiler.cmake | 2 +- Modules/CMakeTestJavaCompiler.cmake | 2 +- Modules/CMakeTestOBJCCompiler.cmake | 2 +- Modules/CMakeTestOBJCXXCompiler.cmake | 2 +- Modules/CMakeTestRCCompiler.cmake | 2 +- Modules/CMakeTestSwiftCompiler.cmake | 2 +- Modules/CMakeUnixFindMake.cmake | 2 +- Modules/CMakeVerifyManifest.cmake | 2 +- Modules/CPack.cmake | 2 +- Modules/CPackComponent.cmake | 2 +- Modules/CPackIFW.cmake | 2 +- Modules/CPackIFWConfigureFile.cmake | 2 +- Modules/CSharpUtilities.cmake | 2 +- Modules/CTest.cmake | 2 +- Modules/CTestCoverageCollectGCOV.cmake | 2 +- Modules/CTestScriptMode.cmake | 2 +- Modules/CTestTargets.cmake | 2 +- Modules/CTestUseLaunchers.cmake | 2 +- Modules/CheckCCompilerFlag.cmake | 2 +- Modules/CheckCSourceCompiles.cmake | 2 +- Modules/CheckCSourceRuns.cmake | 2 +- Modules/CheckCXXCompilerFlag.cmake | 2 +- Modules/CheckCXXSourceCompiles.cmake | 2 +- Modules/CheckCXXSourceRuns.cmake | 2 +- Modules/CheckCXXSymbolExists.cmake | 2 +- Modules/CheckCompilerFlag.cmake | 2 +- Modules/CheckFortranCompilerFlag.cmake | 2 +- Modules/CheckFortranFunctionExists.cmake | 2 +- Modules/CheckFortranSourceCompiles.cmake | 2 +- Modules/CheckFortranSourceRuns.cmake | 2 +- Modules/CheckFunctionExists.cmake | 2 +- Modules/CheckIPOSupported.cmake | 2 +- Modules/CheckIncludeFile.cmake | 2 +- Modules/CheckIncludeFileCXX.cmake | 2 +- Modules/CheckIncludeFiles.cmake | 2 +- Modules/CheckLanguage.cmake | 2 +- Modules/CheckLibraryExists.cmake | 2 +- Modules/CheckLinkerFlag.cmake | 2 +- Modules/CheckOBJCCompilerFlag.cmake | 2 +- Modules/CheckOBJCSourceCompiles.cmake | 2 +- Modules/CheckOBJCSourceRuns.cmake | 2 +- Modules/CheckOBJCXXCompilerFlag.cmake | 2 +- Modules/CheckOBJCXXSourceCompiles.cmake | 2 +- Modules/CheckOBJCXXSourceRuns.cmake | 2 +- Modules/CheckPIESupported.cmake | 2 +- Modules/CheckPrototypeDefinition.cmake | 2 +- Modules/CheckSizeOf.cmake | 2 +- Modules/CheckSourceCompiles.cmake | 2 +- Modules/CheckSourceRuns.cmake | 2 +- Modules/CheckStructHasMember.cmake | 2 +- Modules/CheckSymbolExists.cmake | 2 +- Modules/CheckTypeSize.cmake | 2 +- Modules/CheckVariableExists.cmake | 2 +- Modules/Compiler/CMakeCommonCompilerMacros.cmake | 2 +- Modules/Compiler/Clang.cmake | 2 +- Modules/Compiler/Cray-C.cmake | 2 +- Modules/Compiler/Cray-CXX.cmake | 2 +- Modules/Compiler/Cray-Fortran.cmake | 2 +- Modules/Compiler/Cray.cmake | 2 +- Modules/Compiler/CrayClang-C.cmake | 2 +- Modules/Compiler/CrayClang-CXX.cmake | 2 +- Modules/Compiler/CrayClang.cmake | 2 +- Modules/Compiler/Fujitsu-C.cmake | 2 +- Modules/Compiler/Fujitsu-CXX.cmake | 2 +- Modules/Compiler/Fujitsu.cmake | 2 +- Modules/Compiler/FujitsuClang.cmake | 2 +- Modules/Compiler/GNU.cmake | 2 +- Modules/Compiler/IBMClang.cmake | 2 +- Modules/Compiler/Intel.cmake | 2 +- Modules/Compiler/IntelLLVM.cmake | 2 +- Modules/Compiler/LCC.cmake | 2 +- Modules/Compiler/MSVC-C.cmake | 2 +- Modules/Compiler/MSVC-CXX.cmake | 2 +- Modules/Compiler/MSVC.cmake | 2 +- Modules/Compiler/NVHPC.cmake | 2 +- Modules/Compiler/OpenWatcom.cmake | 2 +- Modules/Compiler/PGI.cmake | 2 +- Modules/Compiler/PathScale.cmake | 2 +- Modules/Compiler/QCC.cmake | 2 +- Modules/Compiler/SCO.cmake | 2 +- Modules/Compiler/SunPro-C.cmake | 2 +- Modules/Compiler/SunPro-CXX.cmake | 2 +- Modules/Compiler/SunPro.cmake | 2 +- Modules/Compiler/TI.cmake | 2 +- Modules/Compiler/Tasking-CXX.cmake | 2 +- Modules/Compiler/Tasking-DetermineCompiler.cmake | 2 +- Modules/Compiler/Tasking-FindBinUtils.cmake | 2 +- Modules/Compiler/Tasking.cmake | 2 +- Modules/Compiler/XL.cmake | 2 +- Modules/Compiler/XLClang.cmake | 2 +- Modules/Dart.cmake | 2 +- Modules/DeployQt4.cmake | 2 +- Modules/Documentation.cmake | 2 +- Modules/ExternalData.cmake | 2 +- Modules/ExternalProject.cmake | 2 +- Modules/ExternalProject/download.cmake.in | 2 +- Modules/ExternalProject/extractfile.cmake.in | 2 +- Modules/ExternalProject/gitclone.cmake.in | 2 +- Modules/ExternalProject/gitupdate.cmake.in | 2 +- Modules/ExternalProject/hgclone.cmake.in | 2 +- Modules/ExternalProject/mkdirs.cmake.in | 2 +- Modules/ExternalProject/verify.cmake.in | 2 +- Modules/FLTKCompatibility.cmake | 2 +- Modules/FeatureSummary.cmake | 2 +- Modules/FetchContent.cmake | 2 +- Modules/FetchContent/CMakeLists.cmake.in | 2 +- Modules/FindALSA.cmake | 2 +- Modules/FindASPELL.cmake | 2 +- Modules/FindAVIFile.cmake | 2 +- Modules/FindArmadillo.cmake | 2 +- Modules/FindBISON.cmake | 2 +- Modules/FindBLAS.cmake | 2 +- Modules/FindBZip2.cmake | 2 +- Modules/FindBacktrace.cmake | 2 +- Modules/FindBoost.cmake | 2 +- Modules/FindBullet.cmake | 2 +- Modules/FindCABLE.cmake | 2 +- Modules/FindCUDAToolkit.cmake | 2 +- Modules/FindCURL.cmake | 2 +- Modules/FindCVS.cmake | 2 +- Modules/FindCoin3D.cmake | 2 +- Modules/FindCups.cmake | 2 +- Modules/FindCurses.cmake | 2 +- Modules/FindCxxTest.cmake | 2 +- Modules/FindCygwin.cmake | 2 +- Modules/FindDCMTK.cmake | 2 +- Modules/FindDart.cmake | 2 +- Modules/FindDevIL.cmake | 2 +- Modules/FindDoxygen.cmake | 2 +- Modules/FindEXPAT.cmake | 2 +- Modules/FindEnvModules.cmake | 2 +- Modules/FindFLEX.cmake | 2 +- Modules/FindFLTK.cmake | 2 +- Modules/FindFLTK2.cmake | 2 +- Modules/FindFontconfig.cmake | 2 +- Modules/FindFreetype.cmake | 2 +- Modules/FindGCCXML.cmake | 2 +- Modules/FindGDAL.cmake | 2 +- Modules/FindGIF.cmake | 2 +- Modules/FindGLEW.cmake | 2 +- Modules/FindGLU.cmake | 2 +- Modules/FindGLUT.cmake | 2 +- Modules/FindGSL.cmake | 2 +- Modules/FindGTK.cmake | 2 +- Modules/FindGTK2.cmake | 2 +- Modules/FindGTest.cmake | 2 +- Modules/FindGettext.cmake | 2 +- Modules/FindGit.cmake | 2 +- Modules/FindGnuTLS.cmake | 2 +- Modules/FindGnuplot.cmake | 2 +- Modules/FindHDF5.cmake | 2 +- Modules/FindHSPELL.cmake | 2 +- Modules/FindHTMLHelp.cmake | 2 +- Modules/FindHg.cmake | 2 +- Modules/FindICU.cmake | 2 +- Modules/FindIce.cmake | 2 +- Modules/FindIconv.cmake | 2 +- Modules/FindIcotool.cmake | 2 +- Modules/FindImageMagick.cmake | 2 +- Modules/FindIntl.cmake | 2 +- Modules/FindJNI.cmake | 2 +- Modules/FindJPEG.cmake | 2 +- Modules/FindJasper.cmake | 2 +- Modules/FindJava.cmake | 2 +- Modules/FindKDE3.cmake | 2 +- Modules/FindKDE4.cmake | 2 +- Modules/FindLAPACK.cmake | 2 +- Modules/FindLATEX.cmake | 2 +- Modules/FindLTTngUST.cmake | 2 +- Modules/FindLibArchive.cmake | 2 +- Modules/FindLibLZMA.cmake | 2 +- Modules/FindLibXml2.cmake | 2 +- Modules/FindLibXslt.cmake | 2 +- Modules/FindLibinput.cmake | 2 +- Modules/FindLua.cmake | 2 +- Modules/FindLua50.cmake | 2 +- Modules/FindLua51.cmake | 2 +- Modules/FindMFC.cmake | 2 +- Modules/FindMPEG.cmake | 2 +- Modules/FindMPEG2.cmake | 2 +- Modules/FindMPI.cmake | 2 +- Modules/FindMatlab.cmake | 2 +- Modules/FindMotif.cmake | 2 +- Modules/FindMsys.cmake | 2 +- Modules/FindODBC.cmake | 2 +- Modules/FindOpenACC.cmake | 2 +- Modules/FindOpenAL.cmake | 2 +- Modules/FindOpenCL.cmake | 2 +- Modules/FindOpenGL.cmake | 2 +- Modules/FindOpenMP.cmake | 2 +- Modules/FindOpenSP.cmake | 2 +- Modules/FindOpenSSL.cmake | 2 +- Modules/FindOpenSceneGraph.cmake | 2 +- Modules/FindOpenThreads.cmake | 2 +- Modules/FindPHP4.cmake | 2 +- Modules/FindPNG.cmake | 2 +- Modules/FindPackageHandleStandardArgs.cmake | 2 +- Modules/FindPackageMessage.cmake | 2 +- Modules/FindPatch.cmake | 2 +- Modules/FindPerl.cmake | 2 +- Modules/FindPerlLibs.cmake | 2 +- Modules/FindPhysFS.cmake | 2 +- Modules/FindPike.cmake | 2 +- Modules/FindPkgConfig.cmake | 2 +- Modules/FindPostgreSQL.cmake | 2 +- Modules/FindProducer.cmake | 2 +- Modules/FindProtobuf.cmake | 2 +- Modules/FindPython.cmake | 2 +- Modules/FindPython/Support.cmake | 2 +- Modules/FindPython2.cmake | 2 +- Modules/FindPython3.cmake | 2 +- Modules/FindPythonInterp.cmake | 2 +- Modules/FindPythonLibs.cmake | 2 +- Modules/FindQt.cmake | 2 +- Modules/FindQt3.cmake | 2 +- Modules/FindQt4.cmake | 2 +- Modules/FindQuickTime.cmake | 2 +- Modules/FindRTI.cmake | 2 +- Modules/FindRuby.cmake | 2 +- Modules/FindSDL.cmake | 2 +- Modules/FindSDL_gfx.cmake | 2 +- Modules/FindSDL_image.cmake | 2 +- Modules/FindSDL_mixer.cmake | 2 +- Modules/FindSDL_net.cmake | 2 +- Modules/FindSDL_sound.cmake | 2 +- Modules/FindSDL_ttf.cmake | 2 +- Modules/FindSQLite3.cmake | 2 +- Modules/FindSWIG.cmake | 2 +- Modules/FindSelfPackers.cmake | 2 +- Modules/FindSquish.cmake | 2 +- Modules/FindSubversion.cmake | 2 +- Modules/FindTCL.cmake | 2 +- Modules/FindTIFF.cmake | 2 +- Modules/FindTclStub.cmake | 2 +- Modules/FindTclsh.cmake | 2 +- Modules/FindThreads.cmake | 2 +- Modules/FindUnixCommands.cmake | 2 +- Modules/FindVulkan.cmake | 2 +- Modules/FindWget.cmake | 2 +- Modules/FindWish.cmake | 2 +- Modules/FindX11.cmake | 2 +- Modules/FindXCTest.cmake | 2 +- Modules/FindXMLRPC.cmake | 2 +- Modules/FindXalanC.cmake | 2 +- Modules/FindXercesC.cmake | 2 +- Modules/FindZLIB.cmake | 2 +- Modules/Findosg.cmake | 2 +- Modules/FindosgAnimation.cmake | 2 +- Modules/FindosgDB.cmake | 2 +- Modules/FindosgFX.cmake | 2 +- Modules/FindosgGA.cmake | 2 +- Modules/FindosgIntrospection.cmake | 2 +- Modules/FindosgManipulator.cmake | 2 +- Modules/FindosgParticle.cmake | 2 +- Modules/FindosgPresentation.cmake | 2 +- Modules/FindosgProducer.cmake | 2 +- Modules/FindosgQt.cmake | 2 +- Modules/FindosgShadow.cmake | 2 +- Modules/FindosgSim.cmake | 2 +- Modules/FindosgTerrain.cmake | 2 +- Modules/FindosgText.cmake | 2 +- Modules/FindosgUtil.cmake | 2 +- Modules/FindosgViewer.cmake | 2 +- Modules/FindosgVolume.cmake | 2 +- Modules/FindosgWidget.cmake | 2 +- Modules/Findosg_functions.cmake | 2 +- Modules/FindwxWidgets.cmake | 2 +- Modules/FindwxWindows.cmake | 2 +- Modules/FortranCInterface.cmake | 2 +- Modules/FortranCInterface/CMakeLists.txt | 2 +- Modules/FortranCInterface/Detect.cmake | 2 +- Modules/FortranCInterface/Verify/CMakeLists.txt | 2 +- Modules/GNUInstallDirs.cmake | 2 +- Modules/GenerateExportHeader.cmake | 2 +- Modules/GetPrerequisites.cmake | 2 +- Modules/GoogleTest.cmake | 2 +- Modules/GoogleTestAddTests.cmake | 2 +- Modules/ITKCompatibility.cmake | 2 +- Modules/InstallRequiredSystemLibraries.cmake | 2 +- Modules/Internal/CMakeASM-ATTLinkerInformation.cmake | 2 +- Modules/Internal/CMakeASMLinkerInformation.cmake | 2 +- Modules/Internal/CMakeASM_MARMASMLinkerInformation.cmake | 2 +- Modules/Internal/CMakeASM_MASMLinkerInformation.cmake | 2 +- Modules/Internal/CMakeASM_NASMLinkerInformation.cmake | 2 +- Modules/Internal/CMakeCLinkerInformation.cmake | 2 +- Modules/Internal/CMakeCUDAArchitecturesAll.cmake | 2 +- Modules/Internal/CMakeCUDAArchitecturesNative.cmake | 2 +- Modules/Internal/CMakeCUDAArchitecturesValidate.cmake | 2 +- Modules/Internal/CMakeCUDAFilterImplicitLibs.cmake | 2 +- Modules/Internal/CMakeCUDAFindToolkit.cmake | 2 +- Modules/Internal/CMakeCUDALinkerInformation.cmake | 2 +- Modules/Internal/CMakeCXXLinkerInformation.cmake | 2 +- Modules/Internal/CMakeCommonLinkerInformation.cmake | 2 +- Modules/Internal/CMakeDetermineLinkerId.cmake | 2 +- Modules/Internal/CMakeFortranLinkerInformation.cmake | 2 +- Modules/Internal/CMakeHIPLinkerInformation.cmake | 2 +- Modules/Internal/CMakeNVCCFilterImplicitInfo.cmake | 2 +- Modules/Internal/CMakeNVCCParseImplicitInfo.cmake | 2 +- Modules/Internal/CMakeOBJCLinkerInformation.cmake | 2 +- Modules/Internal/CMakeOBJCXXLinkerInformation.cmake | 2 +- Modules/Internal/CMakeSwiftLinkerInformation.cmake | 2 +- Modules/Internal/CMakeTryCompilerOrLinkerFlag.cmake | 2 +- Modules/Internal/CPack/CPackDeb.cmake | 2 +- Modules/Internal/CPack/CPackExternal.cmake | 2 +- Modules/Internal/CPack/CPackFreeBSD.cmake | 2 +- Modules/Internal/CPack/CPackNuGet.cmake | 2 +- Modules/Internal/CPack/CPackRPM.cmake | 2 +- Modules/Internal/CPack/CPackWIX.cmake | 2 +- Modules/Internal/CPack/CPackZIP.cmake | 2 +- Modules/Internal/CPack/ISComponents.pas | 2 +- Modules/Internal/CheckCompilerFlag.cmake | 2 +- Modules/Internal/CheckFlagCommonConfig.cmake | 2 +- Modules/Internal/CheckLinkerFlag.cmake | 2 +- Modules/Internal/CheckSourceCompiles.cmake | 2 +- Modules/Internal/CheckSourceRuns.cmake | 2 +- Modules/Internal/HeaderpadWorkaround.cmake | 2 +- Modules/Internal/OSRelease/010-TryOldCentOS.cmake | 2 +- Modules/Internal/OSRelease/020-TryDebianVersion.cmake | 2 +- Modules/KDE3Macros.cmake | 2 +- Modules/Linker/AIX-ASM.cmake | 2 +- Modules/Linker/AIX-C.cmake | 2 +- Modules/Linker/AIX-CXX.cmake | 2 +- Modules/Linker/AIX-Fortran.cmake | 2 +- Modules/Linker/AIX.cmake | 2 +- Modules/Linker/AppleClang.cmake | 2 +- Modules/Linker/GNU-ASM.cmake | 2 +- Modules/Linker/GNU-C.cmake | 2 +- Modules/Linker/GNU-CUDA.cmake | 2 +- Modules/Linker/GNU-CXX.cmake | 2 +- Modules/Linker/GNU-Fortran.cmake | 2 +- Modules/Linker/GNU-HIP.cmake | 2 +- Modules/Linker/GNU.cmake | 2 +- Modules/Linker/GNUgold-ASM.cmake | 2 +- Modules/Linker/GNUgold-C.cmake | 2 +- Modules/Linker/GNUgold-CUDA.cmake | 2 +- Modules/Linker/GNUgold-CXX.cmake | 2 +- Modules/Linker/GNUgold-Fortran.cmake | 2 +- Modules/Linker/GNUgold-HIP.cmake | 2 +- Modules/Linker/GNUgold.cmake | 2 +- Modules/Linker/LLD-ASM.cmake | 2 +- Modules/Linker/LLD-C.cmake | 2 +- Modules/Linker/LLD-CUDA.cmake | 2 +- Modules/Linker/LLD-CXX.cmake | 2 +- Modules/Linker/LLD-Fortran.cmake | 2 +- Modules/Linker/LLD-HIP.cmake | 2 +- Modules/Linker/LLD-OBJC.cmake | 2 +- Modules/Linker/LLD-OBJCXX.cmake | 2 +- Modules/Linker/LLD.cmake | 2 +- Modules/Linker/MOLD-ASM.cmake | 2 +- Modules/Linker/MOLD-C.cmake | 2 +- Modules/Linker/MOLD-CUDA.cmake | 2 +- Modules/Linker/MOLD-CXX.cmake | 2 +- Modules/Linker/MOLD-Fortran.cmake | 2 +- Modules/Linker/MOLD-HIP.cmake | 2 +- Modules/Linker/MOLD-OBJC.cmake | 2 +- Modules/Linker/MOLD-OBJCXX.cmake | 2 +- Modules/Linker/MOLD.cmake | 2 +- Modules/Linker/MSVC-ASM.cmake | 2 +- Modules/Linker/MSVC-C.cmake | 2 +- Modules/Linker/MSVC-CUDA.cmake | 2 +- Modules/Linker/MSVC-CXX.cmake | 2 +- Modules/Linker/MSVC-Fortran.cmake | 2 +- Modules/Linker/MSVC-HIP.cmake | 2 +- Modules/Linker/MSVC.cmake | 2 +- Modules/Linker/Solaris-ASM.cmake | 2 +- Modules/Linker/Solaris-C.cmake | 2 +- Modules/Linker/Solaris-CXX.cmake | 2 +- Modules/Linker/Solaris-Fortran.cmake | 2 +- Modules/Linker/Solaris.cmake | 2 +- Modules/MacroAddFileDependencies.cmake | 2 +- Modules/MatlabTestsRedirect.cmake | 2 +- Modules/Platform/AIX-GNU.cmake | 2 +- Modules/Platform/AIX-IBMClang.cmake | 2 +- Modules/Platform/AIX-XL.cmake | 2 +- Modules/Platform/AIX-XLClang.cmake | 2 +- Modules/Platform/AIX/ExportImportList | 2 +- Modules/Platform/Android-Clang.cmake | 2 +- Modules/Platform/Android-Common.cmake | 2 +- Modules/Platform/Android-Determine.cmake | 2 +- Modules/Platform/Android-GNU.cmake | 2 +- Modules/Platform/Android-Initialize.cmake | 2 +- Modules/Platform/Android/Determine-Compiler-NDK.cmake | 2 +- Modules/Platform/Android/Determine-Compiler-Standalone.cmake | 2 +- Modules/Platform/Android/Determine-Compiler.cmake | 2 +- Modules/Platform/Apple-Absoft-Fortran.cmake | 2 +- Modules/Platform/Apple-Clang.cmake | 2 +- Modules/Platform/Apple-GNU-Fortran.cmake | 2 +- Modules/Platform/Apple-GNU.cmake | 2 +- Modules/Platform/Apple-Intel-Fortran.cmake | 2 +- Modules/Platform/Apple-Intel.cmake | 2 +- Modules/Platform/Apple-IntelLLVM-Fortran.cmake | 2 +- Modules/Platform/Apple-IntelLLVM.cmake | 2 +- Modules/Platform/Apple-NAG-Fortran.cmake | 2 +- Modules/Platform/Apple-PGI.cmake | 2 +- Modules/Platform/BlueGeneP-base.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic-GNU-C.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic-GNU-CXX.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic-GNU-Fortran.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic-XL-C.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic-XL-CXX.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic-XL-Fortran.cmake | 2 +- Modules/Platform/BlueGeneP-dynamic.cmake | 2 +- Modules/Platform/BlueGeneP-static-GNU-C.cmake | 2 +- Modules/Platform/BlueGeneP-static-GNU-CXX.cmake | 2 +- Modules/Platform/BlueGeneP-static-GNU-Fortran.cmake | 2 +- Modules/Platform/BlueGeneP-static-XL-C.cmake | 2 +- Modules/Platform/BlueGeneP-static-XL-CXX.cmake | 2 +- Modules/Platform/BlueGeneP-static-XL-Fortran.cmake | 2 +- Modules/Platform/BlueGeneP-static.cmake | 2 +- Modules/Platform/BlueGeneQ-base.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic-GNU-C.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic-GNU-CXX.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic-GNU-Fortran.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic-XL-C.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic-XL-CXX.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic-XL-Fortran.cmake | 2 +- Modules/Platform/BlueGeneQ-dynamic.cmake | 2 +- Modules/Platform/BlueGeneQ-static-GNU-C.cmake | 2 +- Modules/Platform/BlueGeneQ-static-GNU-CXX.cmake | 2 +- Modules/Platform/BlueGeneQ-static-GNU-Fortran.cmake | 2 +- Modules/Platform/BlueGeneQ-static-XL-C.cmake | 2 +- Modules/Platform/BlueGeneQ-static-XL-CXX.cmake | 2 +- Modules/Platform/BlueGeneQ-static-XL-Fortran.cmake | 2 +- Modules/Platform/BlueGeneQ-static.cmake | 2 +- Modules/Platform/CYGWIN-GNU.cmake | 2 +- Modules/Platform/GHS-MULTI-Determine.cmake | 2 +- Modules/Platform/GHS-MULTI.cmake | 2 +- Modules/Platform/GNU-GNU.cmake | 2 +- Modules/Platform/HP-UX-GNU.cmake | 2 +- Modules/Platform/HP-UX-HP.cmake | 2 +- Modules/Platform/Linker/AIX-AIX-ASM.cmake | 2 +- Modules/Platform/Linker/AIX-AIX-C.cmake | 2 +- Modules/Platform/Linker/AIX-AIX-CXX.cmake | 2 +- Modules/Platform/Linker/AIX-AIX-Fortran.cmake | 2 +- Modules/Platform/Linker/AIX-AIX.cmake | 2 +- Modules/Platform/Linker/AIX-ASM.cmake | 2 +- Modules/Platform/Linker/AIX-C.cmake | 2 +- Modules/Platform/Linker/AIX-CXX.cmake | 2 +- Modules/Platform/Linker/AIX-Fortran.cmake | 2 +- Modules/Platform/Linker/Android-ASM.cmake | 2 +- Modules/Platform/Linker/Android-C.cmake | 2 +- Modules/Platform/Linker/Android-CXX.cmake | 2 +- Modules/Platform/Linker/Android-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/Android-GNU-C.cmake | 2 +- Modules/Platform/Linker/Android-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/Android-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/Android-LLD-C.cmake | 2 +- Modules/Platform/Linker/Android-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/Apple-ASM.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-ASM.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-C.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-CUDA.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-CXX.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-Fortran.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-OBJC.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-OBJCXX.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang-Swift.cmake | 2 +- Modules/Platform/Linker/Apple-AppleClang.cmake | 2 +- Modules/Platform/Linker/Apple-C.cmake | 2 +- Modules/Platform/Linker/Apple-CUDA.cmake | 2 +- Modules/Platform/Linker/Apple-CXX.cmake | 2 +- Modules/Platform/Linker/Apple-Fortran.cmake | 2 +- Modules/Platform/Linker/Apple-LLD-C.cmake | 2 +- Modules/Platform/Linker/Apple-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/Apple-LLD-OBJC.cmake | 2 +- Modules/Platform/Linker/Apple-LLD-OBJCXX.cmake | 2 +- Modules/Platform/Linker/Apple-MOLD-C.cmake | 2 +- Modules/Platform/Linker/Apple-MOLD-CXX.cmake | 2 +- Modules/Platform/Linker/Apple-MOLD-OBJC.cmake | 2 +- Modules/Platform/Linker/Apple-MOLD-OBJCXX.cmake | 2 +- Modules/Platform/Linker/Apple-OBJC.cmake | 2 +- Modules/Platform/Linker/Apple-OBJCXX.cmake | 2 +- Modules/Platform/Linker/Apple-Swift.cmake | 2 +- Modules/Platform/Linker/BSD-Linker-Initialize.cmake | 2 +- Modules/Platform/Linker/CYGWIN-ASM.cmake | 2 +- Modules/Platform/Linker/CYGWIN-C.cmake | 2 +- Modules/Platform/Linker/CYGWIN-CXX.cmake | 2 +- Modules/Platform/Linker/CYGWIN-Fortran.cmake | 2 +- Modules/Platform/Linker/CYGWIN-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/CYGWIN-GNU-C.cmake | 2 +- Modules/Platform/Linker/CYGWIN-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/CYGWIN-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/CYGWIN-GNU.cmake | 2 +- Modules/Platform/Linker/CYGWIN-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/CYGWIN-LLD-C.cmake | 2 +- Modules/Platform/Linker/CYGWIN-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/CYGWIN-LLD-Fortran.cmake | 2 +- Modules/Platform/Linker/CYGWIN-LLD.cmake | 2 +- Modules/Platform/Linker/DragonFly-ASM.cmake | 2 +- Modules/Platform/Linker/DragonFly-C.cmake | 2 +- Modules/Platform/Linker/DragonFly-CXX.cmake | 2 +- Modules/Platform/Linker/DragonFly-Fortran.cmake | 2 +- Modules/Platform/Linker/DragonFly-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/DragonFly-GNU-C.cmake | 2 +- Modules/Platform/Linker/DragonFly-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/DragonFly-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/DragonFly-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/DragonFly-LLD-C.cmake | 2 +- Modules/Platform/Linker/DragonFly-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/DragonFly-LLD-Fortran.cmake | 2 +- Modules/Platform/Linker/FreeBSD-ASM.cmake | 2 +- Modules/Platform/Linker/FreeBSD-C.cmake | 2 +- Modules/Platform/Linker/FreeBSD-CXX.cmake | 2 +- Modules/Platform/Linker/FreeBSD-Fortran.cmake | 2 +- Modules/Platform/Linker/FreeBSD-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/FreeBSD-GNU-C.cmake | 2 +- Modules/Platform/Linker/FreeBSD-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/FreeBSD-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/FreeBSD-GNU.cmake | 2 +- Modules/Platform/Linker/FreeBSD-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/FreeBSD-LLD-C.cmake | 2 +- Modules/Platform/Linker/FreeBSD-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/FreeBSD-LLD-Fortran.cmake | 2 +- Modules/Platform/Linker/FreeBSD-LLD.cmake | 2 +- Modules/Platform/Linker/GNU-ASM.cmake | 2 +- Modules/Platform/Linker/GNU-C.cmake | 2 +- Modules/Platform/Linker/GNU-CXX.cmake | 2 +- Modules/Platform/Linker/GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/GNU-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/GNU-GNU-C.cmake | 2 +- Modules/Platform/Linker/GNU-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/GNU-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/GNU-GNU.cmake | 2 +- Modules/Platform/Linker/GNU.cmake | 2 +- Modules/Platform/Linker/Haiku-ASM.cmake | 2 +- Modules/Platform/Linker/Haiku-C.cmake | 2 +- Modules/Platform/Linker/Haiku-CXX.cmake | 2 +- Modules/Platform/Linker/Haiku-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/Haiku-GNU-C.cmake | 2 +- Modules/Platform/Linker/Haiku-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/Haiku-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/Haiku-LLD-C.cmake | 2 +- Modules/Platform/Linker/Haiku-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/Linux-ASM.cmake | 2 +- Modules/Platform/Linker/Linux-C.cmake | 2 +- Modules/Platform/Linker/Linux-CUDA.cmake | 2 +- Modules/Platform/Linker/Linux-CXX.cmake | 2 +- Modules/Platform/Linker/Linux-Fortran.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-C.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-CUDA.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-HIP.cmake | 2 +- Modules/Platform/Linker/Linux-GNU-Swift.cmake | 2 +- Modules/Platform/Linker/Linux-GNU.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-ASM.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-C.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-CUDA.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-CXX.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-Fortran.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-HIP.cmake | 2 +- Modules/Platform/Linker/Linux-GNUgold-Swift.cmake | 2 +- Modules/Platform/Linker/Linux-HIP.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-C.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-CUDA.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-Fortran.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-HIP.cmake | 2 +- Modules/Platform/Linker/Linux-LLD-Swift.cmake | 2 +- Modules/Platform/Linker/Linux-LLD.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD-ASM.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD-C.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD-CUDA.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD-CXX.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD-Fortran.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD-HIP.cmake | 2 +- Modules/Platform/Linker/Linux-MOLD.cmake | 2 +- Modules/Platform/Linker/Linux-Swift.cmake | 2 +- Modules/Platform/Linker/MSYS-ASM.cmake | 2 +- Modules/Platform/Linker/MSYS-C.cmake | 2 +- Modules/Platform/Linker/MSYS-CXX.cmake | 2 +- Modules/Platform/Linker/MSYS-Fortran.cmake | 2 +- Modules/Platform/Linker/MSYS-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/MSYS-GNU-C.cmake | 2 +- Modules/Platform/Linker/MSYS-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/MSYS-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/MSYS-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/MSYS-LLD-C.cmake | 2 +- Modules/Platform/Linker/MSYS-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/MSYS-LLD-Fortran.cmake | 2 +- Modules/Platform/Linker/MirBSD-ASM.cmake | 2 +- Modules/Platform/Linker/MirBSD-C.cmake | 2 +- Modules/Platform/Linker/MirBSD-CXX.cmake | 2 +- Modules/Platform/Linker/MirBSD-Fortran.cmake | 2 +- Modules/Platform/Linker/MirBSD-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/MirBSD-GNU-C.cmake | 2 +- Modules/Platform/Linker/MirBSD-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/MirBSD-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/NetBSD-ASM.cmake | 2 +- Modules/Platform/Linker/NetBSD-C.cmake | 2 +- Modules/Platform/Linker/NetBSD-CXX.cmake | 2 +- Modules/Platform/Linker/NetBSD-Fortran.cmake | 2 +- Modules/Platform/Linker/NetBSD-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/NetBSD-GNU-C.cmake | 2 +- Modules/Platform/Linker/NetBSD-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/NetBSD-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/NetBSD-GNU.cmake | 2 +- Modules/Platform/Linker/OpenBSD-ASM.cmake | 2 +- Modules/Platform/Linker/OpenBSD-C.cmake | 2 +- Modules/Platform/Linker/OpenBSD-CXX.cmake | 2 +- Modules/Platform/Linker/OpenBSD-Fortran.cmake | 2 +- Modules/Platform/Linker/OpenBSD-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/OpenBSD-GNU-C.cmake | 2 +- Modules/Platform/Linker/OpenBSD-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/OpenBSD-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/OpenBSD-GNU.cmake | 2 +- Modules/Platform/Linker/OpenBSD-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/OpenBSD-LLD-C.cmake | 2 +- Modules/Platform/Linker/OpenBSD-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/OpenBSD-LLD-Fortran.cmake | 2 +- Modules/Platform/Linker/OpenBSD-LLD.cmake | 2 +- Modules/Platform/Linker/SerenityOS-ASM.cmake | 2 +- Modules/Platform/Linker/SerenityOS-C.cmake | 2 +- Modules/Platform/Linker/SerenityOS-CXX.cmake | 2 +- Modules/Platform/Linker/SerenityOS-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/SerenityOS-GNU-C.cmake | 2 +- Modules/Platform/Linker/SerenityOS-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/SerenityOS-GNU.cmake | 2 +- Modules/Platform/Linker/SerenityOS-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/SerenityOS-LLD-C.cmake | 2 +- Modules/Platform/Linker/SerenityOS-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/SerenityOS-LLD.cmake | 2 +- Modules/Platform/Linker/SunOS-ASM.cmake | 2 +- Modules/Platform/Linker/SunOS-C.cmake | 2 +- Modules/Platform/Linker/SunOS-CXX.cmake | 2 +- Modules/Platform/Linker/SunOS-Fortran.cmake | 2 +- Modules/Platform/Linker/SunOS-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/SunOS-GNU-C.cmake | 2 +- Modules/Platform/Linker/SunOS-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/SunOS-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/SunOS-GNU.cmake | 2 +- Modules/Platform/Linker/SunOS-Solaris-ASM.cmake | 2 +- Modules/Platform/Linker/SunOS-Solaris-C.cmake | 2 +- Modules/Platform/Linker/SunOS-Solaris-CXX.cmake | 2 +- Modules/Platform/Linker/SunOS-Solaris-Fortran.cmake | 2 +- Modules/Platform/Linker/SunOS-Solaris.cmake | 2 +- Modules/Platform/Linker/Windows-ASM.cmake | 2 +- Modules/Platform/Linker/Windows-C.cmake | 2 +- Modules/Platform/Linker/Windows-CUDA.cmake | 2 +- Modules/Platform/Linker/Windows-CXX.cmake | 2 +- Modules/Platform/Linker/Windows-Fortran.cmake | 2 +- Modules/Platform/Linker/Windows-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/Windows-GNU-C.cmake | 2 +- Modules/Platform/Linker/Windows-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/Windows-GNU-Fortran.cmake | 2 +- Modules/Platform/Linker/Windows-GNU-HIP.cmake | 2 +- Modules/Platform/Linker/Windows-GNU.cmake | 2 +- Modules/Platform/Linker/Windows-HIP.cmake | 2 +- Modules/Platform/Linker/Windows-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/Windows-LLD-C.cmake | 2 +- Modules/Platform/Linker/Windows-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/Windows-LLD-HIP.cmake | 2 +- Modules/Platform/Linker/Windows-LLD.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-ASM.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-C.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-CUDA.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-CXX.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-Fortran.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-HIP.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC-Swift.cmake | 2 +- Modules/Platform/Linker/Windows-MSVC.cmake | 2 +- Modules/Platform/Linker/Windows-Swift.cmake | 2 +- Modules/Platform/Linker/WindowsCE-C.cmake | 2 +- Modules/Platform/Linker/WindowsCE-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsCE-MSVC-C.cmake | 2 +- Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake | 2 +- Modules/Platform/Linker/WindowsKernelModeDriver-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-C.cmake | 2 +- Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-C.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-GNU-C.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-LLD-C.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-MSVC-Swift.cmake | 2 +- Modules/Platform/Linker/WindowsPhone-Swift.cmake | 2 +- Modules/Platform/Linker/WindowsStore-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsStore-C.cmake | 2 +- Modules/Platform/Linker/WindowsStore-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsStore-GNU-C.cmake | 2 +- Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsStore-LLD-C.cmake | 2 +- Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake | 2 +- Modules/Platform/Linker/WindowsStore-MSVC-C.cmake | 2 +- Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake | 2 +- Modules/Platform/Linker/WindowsStore-MSVC-Swift.cmake | 2 +- Modules/Platform/Linker/WindowsStore-Swift.cmake | 2 +- Modules/Platform/Linux-Fujitsu.cmake | 2 +- Modules/Platform/Linux-GNU.cmake | 2 +- Modules/Platform/Linux-Intel.cmake | 2 +- Modules/Platform/Linux-IntelLLVM.cmake | 2 +- Modules/Platform/Linux-LCC.cmake | 2 +- Modules/Platform/Linux-NVHPC.cmake | 2 +- Modules/Platform/Linux-OpenWatcom.cmake | 2 +- Modules/Platform/Linux-PGI.cmake | 2 +- Modules/Platform/Linux-PathScale.cmake | 2 +- Modules/Platform/SunOS-GNU.cmake | 2 +- Modules/Platform/SunOS-PathScale.cmake | 2 +- Modules/Platform/UnixPaths.cmake | 2 +- Modules/Platform/Windows-Clang.cmake | 2 +- Modules/Platform/Windows-Embarcadero.cmake | 2 +- Modules/Platform/Windows-GNU.cmake | 2 +- Modules/Platform/Windows-Intel.cmake | 2 +- Modules/Platform/Windows-IntelLLVM.cmake | 2 +- Modules/Platform/Windows-MSVC.cmake | 2 +- Modules/Platform/Windows-OpenWatcom.cmake | 2 +- Modules/Platform/Windows-PGI.cmake | 2 +- Modules/Platform/Windows3x-OpenWatcom.cmake | 2 +- Modules/Platform/WindowsPaths.cmake | 2 +- Modules/ProcessorCount.cmake | 2 +- Modules/Qt4ConfigDependentSettings.cmake | 2 +- Modules/Qt4Macros.cmake | 2 +- Modules/SelectLibraryConfigurations.cmake | 2 +- Modules/SquishTestScript.cmake | 2 +- Modules/SystemInformation.cmake | 2 +- Modules/TestBigEndian.cmake | 2 +- Modules/TestCXXAcceptsFlag.cmake | 2 +- Modules/TestForANSIForScope.cmake | 2 +- Modules/TestForANSIStreamHeaders.cmake | 2 +- Modules/TestForSSTREAM.cmake | 2 +- Modules/TestForSTDNamespace.cmake | 2 +- Modules/UseEcos.cmake | 2 +- Modules/UseJava.cmake | 2 +- Modules/UseJava/ClassFilelist.cmake | 2 +- Modules/UseJava/ClearClassFiles.cmake | 2 +- Modules/UseJava/Symlinks.cmake | 2 +- Modules/UsePkgConfig.cmake | 2 +- Modules/UseQt4.cmake | 2 +- Modules/UseSWIG.cmake | 2 +- Modules/UseSWIG/ManageSupportFiles.cmake | 2 +- Modules/Use_wxWindows.cmake | 2 +- Modules/UsewxWidgets.cmake | 2 +- Modules/VTKCompatibility.cmake | 2 +- Modules/WriteBasicConfigVersionFile.cmake | 2 +- Modules/WriteCompilerDetectionHeader.cmake | 2 +- Modules/ecos_clean.cmake | 2 +- Modules/kde3uic.cmake | 2 +- Packaging/QtSDK/ToolsCMakeXX.cmake | 2 +- Packaging/QtSDK/qt.tools.cmake.xx.qs.in | 2 +- Source/CMakeLists.txt | 2 +- Source/CMakeVersion.rc.in | 2 +- Source/CPack/IFW/cmCPackIFWCommon.cxx | 2 +- Source/CPack/IFW/cmCPackIFWCommon.h | 2 +- Source/CPack/IFW/cmCPackIFWGenerator.cxx | 2 +- Source/CPack/IFW/cmCPackIFWGenerator.h | 2 +- Source/CPack/IFW/cmCPackIFWInstaller.cxx | 2 +- Source/CPack/IFW/cmCPackIFWInstaller.h | 2 +- Source/CPack/IFW/cmCPackIFWPackage.cxx | 2 +- Source/CPack/IFW/cmCPackIFWPackage.h | 2 +- Source/CPack/IFW/cmCPackIFWRepository.cxx | 2 +- Source/CPack/IFW/cmCPackIFWRepository.h | 2 +- Source/CPack/WiX/cmCMakeToWixPath.cxx | 2 +- Source/CPack/WiX/cmCMakeToWixPath.h | 2 +- Source/CPack/WiX/cmCPackWIXGenerator.cxx | 2 +- Source/CPack/WiX/cmCPackWIXGenerator.h | 2 +- Source/CPack/WiX/cmWIXAccessControlList.cxx | 2 +- Source/CPack/WiX/cmWIXAccessControlList.h | 2 +- Source/CPack/WiX/cmWIXDirectoriesSourceWriter.cxx | 2 +- Source/CPack/WiX/cmWIXDirectoriesSourceWriter.h | 2 +- Source/CPack/WiX/cmWIXFeaturesSourceWriter.cxx | 2 +- Source/CPack/WiX/cmWIXFeaturesSourceWriter.h | 2 +- Source/CPack/WiX/cmWIXFilesSourceWriter.cxx | 2 +- Source/CPack/WiX/cmWIXFilesSourceWriter.h | 2 +- Source/CPack/WiX/cmWIXPatch.cxx | 2 +- Source/CPack/WiX/cmWIXPatch.h | 2 +- Source/CPack/WiX/cmWIXPatchParser.cxx | 2 +- Source/CPack/WiX/cmWIXPatchParser.h | 2 +- Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx | 2 +- Source/CPack/WiX/cmWIXRichTextFormatWriter.h | 2 +- Source/CPack/WiX/cmWIXShortcut.cxx | 2 +- Source/CPack/WiX/cmWIXShortcut.h | 2 +- Source/CPack/WiX/cmWIXSourceWriter.cxx | 2 +- Source/CPack/WiX/cmWIXSourceWriter.h | 2 +- Source/CPack/cmCPackArchiveGenerator.cxx | 2 +- Source/CPack/cmCPackArchiveGenerator.h | 2 +- Source/CPack/cmCPackBundleGenerator.cxx | 2 +- Source/CPack/cmCPackBundleGenerator.h | 2 +- Source/CPack/cmCPackComponentGroup.cxx | 2 +- Source/CPack/cmCPackComponentGroup.h | 2 +- Source/CPack/cmCPackConfigure.h.in | 2 +- Source/CPack/cmCPackCygwinBinaryGenerator.cxx | 2 +- Source/CPack/cmCPackCygwinBinaryGenerator.h | 2 +- Source/CPack/cmCPackCygwinSourceGenerator.cxx | 2 +- Source/CPack/cmCPackCygwinSourceGenerator.h | 2 +- Source/CPack/cmCPackDebGenerator.cxx | 2 +- Source/CPack/cmCPackDebGenerator.h | 2 +- Source/CPack/cmCPackDragNDropGenerator.cxx | 2 +- Source/CPack/cmCPackDragNDropGenerator.h | 2 +- Source/CPack/cmCPackExternalGenerator.cxx | 2 +- Source/CPack/cmCPackExternalGenerator.h | 2 +- Source/CPack/cmCPackFreeBSDGenerator.cxx | 2 +- Source/CPack/cmCPackFreeBSDGenerator.h | 2 +- Source/CPack/cmCPackGenerator.cxx | 2 +- Source/CPack/cmCPackGenerator.h | 2 +- Source/CPack/cmCPackGeneratorFactory.cxx | 2 +- Source/CPack/cmCPackGeneratorFactory.h | 2 +- Source/CPack/cmCPackInnoSetupGenerator.cxx | 2 +- Source/CPack/cmCPackInnoSetupGenerator.h | 2 +- Source/CPack/cmCPackLog.cxx | 2 +- Source/CPack/cmCPackLog.h | 2 +- Source/CPack/cmCPackNSISGenerator.cxx | 2 +- Source/CPack/cmCPackNSISGenerator.h | 2 +- Source/CPack/cmCPackNuGetGenerator.cxx | 2 +- Source/CPack/cmCPackNuGetGenerator.h | 2 +- Source/CPack/cmCPackPKGGenerator.cxx | 2 +- Source/CPack/cmCPackPKGGenerator.h | 2 +- Source/CPack/cmCPackProductBuildGenerator.cxx | 2 +- Source/CPack/cmCPackProductBuildGenerator.h | 2 +- Source/CPack/cmCPackRPMGenerator.cxx | 2 +- Source/CPack/cmCPackRPMGenerator.h | 2 +- Source/CPack/cmCPackSTGZGenerator.cxx | 2 +- Source/CPack/cmCPackSTGZGenerator.h | 2 +- Source/CPack/cpack.cxx | 2 +- Source/CTest/cmCTestBZR.cxx | 2 +- Source/CTest/cmCTestBZR.h | 2 +- Source/CTest/cmCTestBinPacker.cxx | 2 +- Source/CTest/cmCTestBinPacker.h | 2 +- Source/CTest/cmCTestBuildAndTest.cxx | 2 +- Source/CTest/cmCTestBuildAndTest.h | 2 +- Source/CTest/cmCTestBuildCommand.cxx | 2 +- Source/CTest/cmCTestBuildCommand.h | 2 +- Source/CTest/cmCTestBuildHandler.cxx | 2 +- Source/CTest/cmCTestBuildHandler.h | 2 +- Source/CTest/cmCTestCVS.cxx | 2 +- Source/CTest/cmCTestCVS.h | 2 +- Source/CTest/cmCTestCommand.cxx | 2 +- Source/CTest/cmCTestCommand.h | 2 +- Source/CTest/cmCTestConfigureCommand.cxx | 2 +- Source/CTest/cmCTestConfigureCommand.h | 2 +- Source/CTest/cmCTestCoverageCommand.cxx | 2 +- Source/CTest/cmCTestCoverageCommand.h | 2 +- Source/CTest/cmCTestCoverageHandler.cxx | 2 +- Source/CTest/cmCTestCoverageHandler.h | 2 +- Source/CTest/cmCTestCurl.cxx | 2 +- Source/CTest/cmCTestCurl.h | 2 +- Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx | 2 +- Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h | 2 +- Source/CTest/cmCTestGIT.cxx | 2 +- Source/CTest/cmCTestGIT.h | 2 +- Source/CTest/cmCTestGenericHandler.cxx | 2 +- Source/CTest/cmCTestGenericHandler.h | 2 +- Source/CTest/cmCTestGlobalVC.cxx | 2 +- Source/CTest/cmCTestGlobalVC.h | 2 +- Source/CTest/cmCTestHG.cxx | 2 +- Source/CTest/cmCTestHG.h | 2 +- Source/CTest/cmCTestHandlerCommand.cxx | 2 +- Source/CTest/cmCTestHandlerCommand.h | 2 +- Source/CTest/cmCTestLaunch.cxx | 2 +- Source/CTest/cmCTestLaunch.h | 2 +- Source/CTest/cmCTestLaunchReporter.cxx | 2 +- Source/CTest/cmCTestLaunchReporter.h | 2 +- Source/CTest/cmCTestMemCheckCommand.cxx | 2 +- Source/CTest/cmCTestMemCheckCommand.h | 2 +- Source/CTest/cmCTestMemCheckHandler.cxx | 2 +- Source/CTest/cmCTestMemCheckHandler.h | 2 +- Source/CTest/cmCTestMultiProcessHandler.cxx | 2 +- Source/CTest/cmCTestMultiProcessHandler.h | 2 +- Source/CTest/cmCTestP4.cxx | 2 +- Source/CTest/cmCTestP4.h | 2 +- Source/CTest/cmCTestReadCustomFilesCommand.cxx | 2 +- Source/CTest/cmCTestReadCustomFilesCommand.h | 2 +- Source/CTest/cmCTestResourceAllocator.cxx | 2 +- Source/CTest/cmCTestResourceAllocator.h | 2 +- Source/CTest/cmCTestResourceGroupsLexerHelper.cxx | 2 +- Source/CTest/cmCTestResourceGroupsLexerHelper.h | 2 +- Source/CTest/cmCTestResourceSpec.cxx | 2 +- Source/CTest/cmCTestResourceSpec.h | 2 +- Source/CTest/cmCTestRunScriptCommand.cxx | 2 +- Source/CTest/cmCTestRunScriptCommand.h | 2 +- Source/CTest/cmCTestRunTest.cxx | 2 +- Source/CTest/cmCTestRunTest.h | 2 +- Source/CTest/cmCTestSVN.cxx | 2 +- Source/CTest/cmCTestSVN.h | 2 +- Source/CTest/cmCTestScriptHandler.cxx | 2 +- Source/CTest/cmCTestScriptHandler.h | 2 +- Source/CTest/cmCTestSleepCommand.cxx | 2 +- Source/CTest/cmCTestSleepCommand.h | 2 +- Source/CTest/cmCTestStartCommand.cxx | 2 +- Source/CTest/cmCTestStartCommand.h | 2 +- Source/CTest/cmCTestSubmitCommand.cxx | 2 +- Source/CTest/cmCTestSubmitCommand.h | 2 +- Source/CTest/cmCTestSubmitHandler.cxx | 2 +- Source/CTest/cmCTestSubmitHandler.h | 2 +- Source/CTest/cmCTestTestCommand.cxx | 2 +- Source/CTest/cmCTestTestCommand.h | 2 +- Source/CTest/cmCTestTestHandler.cxx | 2 +- Source/CTest/cmCTestTestHandler.h | 2 +- Source/CTest/cmCTestTestMeasurementXMLParser.cxx | 2 +- Source/CTest/cmCTestTestMeasurementXMLParser.h | 2 +- Source/CTest/cmCTestTypes.cxx | 2 +- Source/CTest/cmCTestTypes.h | 2 +- Source/CTest/cmCTestUpdateCommand.cxx | 2 +- Source/CTest/cmCTestUpdateCommand.h | 2 +- Source/CTest/cmCTestUploadCommand.cxx | 2 +- Source/CTest/cmCTestUploadCommand.h | 2 +- Source/CTest/cmCTestVC.cxx | 2 +- Source/CTest/cmCTestVC.h | 2 +- Source/CTest/cmParseBlanketJSCoverage.cxx | 2 +- Source/CTest/cmParseBlanketJSCoverage.h | 2 +- Source/CTest/cmParseCacheCoverage.h | 2 +- Source/CTest/cmParseCoberturaCoverage.h | 2 +- Source/CTest/cmParseDelphiCoverage.h | 2 +- Source/CTest/cmParseGTMCoverage.h | 2 +- Source/CTest/cmParseJacocoCoverage.h | 2 +- Source/CTest/cmParseMumpsCoverage.h | 2 +- Source/CTest/cmParsePHPCoverage.h | 2 +- Source/CTest/cmProcess.cxx | 2 +- Source/CTest/cmProcess.h | 2 +- Source/CTest/cmUVJobServerClient.cxx | 2 +- Source/CTest/cmUVJobServerClient.h | 2 +- Source/CursesDialog/CMakeLists.txt | 2 +- Source/CursesDialog/ccmake.cxx | 2 +- Source/CursesDialog/cmCursesBoolWidget.cxx | 2 +- Source/CursesDialog/cmCursesBoolWidget.h | 2 +- Source/CursesDialog/cmCursesCacheEntryComposite.cxx | 2 +- Source/CursesDialog/cmCursesCacheEntryComposite.h | 2 +- Source/CursesDialog/cmCursesColor.cxx | 2 +- Source/CursesDialog/cmCursesColor.h | 2 +- Source/CursesDialog/cmCursesDummyWidget.cxx | 2 +- Source/CursesDialog/cmCursesDummyWidget.h | 2 +- Source/CursesDialog/cmCursesFilePathWidget.cxx | 2 +- Source/CursesDialog/cmCursesFilePathWidget.h | 2 +- Source/CursesDialog/cmCursesForm.cxx | 2 +- Source/CursesDialog/cmCursesForm.h | 2 +- Source/CursesDialog/cmCursesLabelWidget.cxx | 2 +- Source/CursesDialog/cmCursesLabelWidget.h | 2 +- Source/CursesDialog/cmCursesLongMessageForm.cxx | 2 +- Source/CursesDialog/cmCursesLongMessageForm.h | 2 +- Source/CursesDialog/cmCursesMainForm.cxx | 2 +- Source/CursesDialog/cmCursesMainForm.h | 2 +- Source/CursesDialog/cmCursesOptionsWidget.cxx | 2 +- Source/CursesDialog/cmCursesOptionsWidget.h | 2 +- Source/CursesDialog/cmCursesPathWidget.cxx | 2 +- Source/CursesDialog/cmCursesPathWidget.h | 2 +- Source/CursesDialog/cmCursesStandardIncludes.h | 2 +- Source/CursesDialog/cmCursesStringWidget.cxx | 2 +- Source/CursesDialog/cmCursesStringWidget.h | 2 +- Source/CursesDialog/cmCursesWidget.cxx | 2 +- Source/CursesDialog/cmCursesWidget.h | 2 +- Source/CursesDialog/form/CMakeLists.txt | 2 +- Source/CursesDialog/form/cmFormConfigure.h.in | 2 +- Source/LexerParser/cmCTestResourceGroupsLexer.cxx | 2 +- Source/LexerParser/cmCTestResourceGroupsLexer.in.l | 2 +- Source/LexerParser/cmDependsJavaLexer.cxx | 2 +- Source/LexerParser/cmDependsJavaLexer.in.l | 2 +- Source/LexerParser/cmDependsJavaParser.cxx | 2 +- Source/LexerParser/cmDependsJavaParser.y | 2 +- Source/LexerParser/cmExprLexer.cxx | 2 +- Source/LexerParser/cmExprLexer.in.l | 2 +- Source/LexerParser/cmExprParser.cxx | 2 +- Source/LexerParser/cmExprParser.y | 2 +- Source/LexerParser/cmFortranLexer.cxx | 2 +- Source/LexerParser/cmFortranLexer.in.l | 2 +- Source/LexerParser/cmFortranParser.cxx | 2 +- Source/LexerParser/cmFortranParser.y | 2 +- Source/LexerParser/cmGccDepfileLexer.cxx | 2 +- Source/LexerParser/cmGccDepfileLexer.in.l | 2 +- Source/LexerParser/cmListFileLexer.c | 2 +- Source/LexerParser/cmListFileLexer.in.l | 2 +- Source/Modules/CheckCXXLinkerFlag.cmake | 2 +- Source/Modules/FindJsonCpp.cmake | 2 +- Source/Modules/FindLibRHash.cmake | 2 +- Source/Modules/FindLibUUID.cmake | 2 +- Source/Modules/FindLibUV.cmake | 2 +- Source/QtDialog/AddCacheEntry.cxx | 2 +- Source/QtDialog/AddCacheEntry.h | 2 +- Source/QtDialog/CMakeGUIExec.cxx | 2 +- Source/QtDialog/CMakeLists.txt | 2 +- Source/QtDialog/CMakeSetup.cxx | 2 +- Source/QtDialog/CMakeSetupDialog.cxx | 2 +- Source/QtDialog/CMakeSetupDialog.h | 2 +- Source/QtDialog/EnvironmentDialog.cxx | 2 +- Source/QtDialog/EnvironmentDialog.h | 2 +- Source/QtDialog/QCMake.cxx | 2 +- Source/QtDialog/QCMake.h | 2 +- Source/QtDialog/QCMakeCacheView.cxx | 2 +- Source/QtDialog/QCMakeCacheView.h | 2 +- Source/QtDialog/QCMakePreset.cxx | 2 +- Source/QtDialog/QCMakePreset.h | 2 +- Source/QtDialog/QCMakePresetComboBox.cxx | 2 +- Source/QtDialog/QCMakePresetComboBox.h | 2 +- Source/QtDialog/QCMakePresetItemModel.cxx | 2 +- Source/QtDialog/QCMakePresetItemModel.h | 2 +- Source/QtDialog/QCMakeSizeType.h | 2 +- Source/QtDialog/QCMakeWidgets.cxx | 2 +- Source/QtDialog/QCMakeWidgets.h | 2 +- Source/QtDialog/RegexExplorer.cxx | 2 +- Source/QtDialog/RegexExplorer.h | 2 +- Source/QtDialog/WarningMessagesDialog.cxx | 2 +- Source/QtDialog/WarningMessagesDialog.h | 2 +- Source/bindexplib.cxx | 2 +- Source/bindexplib.h | 2 +- Source/cmAddCompileDefinitionsCommand.cxx | 2 +- Source/cmAddCompileDefinitionsCommand.h | 2 +- Source/cmAddCompileOptionsCommand.cxx | 2 +- Source/cmAddCompileOptionsCommand.h | 2 +- Source/cmAddCustomCommandCommand.cxx | 2 +- Source/cmAddCustomCommandCommand.h | 2 +- Source/cmAddCustomTargetCommand.cxx | 2 +- Source/cmAddCustomTargetCommand.h | 2 +- Source/cmAddDefinitionsCommand.cxx | 2 +- Source/cmAddDefinitionsCommand.h | 2 +- Source/cmAddDependenciesCommand.cxx | 2 +- Source/cmAddDependenciesCommand.h | 2 +- Source/cmAddExecutableCommand.cxx | 2 +- Source/cmAddExecutableCommand.h | 2 +- Source/cmAddLibraryCommand.cxx | 2 +- Source/cmAddLibraryCommand.h | 2 +- Source/cmAddLinkOptionsCommand.cxx | 2 +- Source/cmAddLinkOptionsCommand.h | 2 +- Source/cmAddSubDirectoryCommand.cxx | 2 +- Source/cmAddSubDirectoryCommand.h | 2 +- Source/cmAddTestCommand.cxx | 2 +- Source/cmAddTestCommand.h | 2 +- Source/cmAffinity.cxx | 2 +- Source/cmAffinity.h | 2 +- Source/cmAlgorithms.h | 2 +- Source/cmArchiveWrite.cxx | 2 +- Source/cmArchiveWrite.h | 2 +- Source/cmArgumentParser.cxx | 2 +- Source/cmArgumentParser.h | 2 +- Source/cmArgumentParserTypes.h | 2 +- Source/cmAuxSourceDirectoryCommand.cxx | 2 +- Source/cmAuxSourceDirectoryCommand.h | 2 +- Source/cmBase32.cxx | 2 +- Source/cmBase32.h | 2 +- Source/cmBinUtilsLinker.cxx | 2 +- Source/cmBinUtilsLinker.h | 2 +- Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h | 2 +- Source/cmBinUtilsLinuxELFLinker.cxx | 2 +- Source/cmBinUtilsLinuxELFLinker.h | 2 +- Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h | 2 +- Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h | 2 +- Source/cmBinUtilsMacOSMachOLinker.cxx | 2 +- Source/cmBinUtilsMacOSMachOLinker.h | 2 +- Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.h | 2 +- Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h | 2 +- Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h | 2 +- Source/cmBinUtilsWindowsPELinker.cxx | 2 +- Source/cmBinUtilsWindowsPELinker.h | 2 +- Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx | 2 +- Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.h | 2 +- Source/cmBlockCommand.cxx | 2 +- Source/cmBlockCommand.h | 2 +- Source/cmBreakCommand.cxx | 2 +- Source/cmBreakCommand.h | 2 +- Source/cmBuildCommand.cxx | 2 +- Source/cmBuildCommand.h | 2 +- Source/cmBuildDatabase.cxx | 2 +- Source/cmBuildDatabase.h | 2 +- Source/cmBuildOptions.h | 2 +- Source/cmCLocaleEnvironmentScope.cxx | 2 +- Source/cmCLocaleEnvironmentScope.h | 2 +- Source/cmCMakeHostSystemInformationCommand.cxx | 2 +- Source/cmCMakeHostSystemInformationCommand.h | 2 +- Source/cmCMakeLanguageCommand.cxx | 2 +- Source/cmCMakeLanguageCommand.h | 2 +- Source/cmCMakeMinimumRequired.cxx | 2 +- Source/cmCMakeMinimumRequired.h | 2 +- Source/cmCMakePath.cxx | 2 +- Source/cmCMakePath.h | 2 +- Source/cmCMakePathCommand.cxx | 2 +- Source/cmCMakePathCommand.h | 2 +- Source/cmCMakePkgConfigCommand.cxx | 2 +- Source/cmCMakePkgConfigCommand.h | 2 +- Source/cmCMakePolicyCommand.cxx | 2 +- Source/cmCMakePolicyCommand.h | 2 +- Source/cmCMakePresetsErrors.cxx | 2 +- Source/cmCMakePresetsErrors.h | 2 +- Source/cmCMakePresetsGraph.cxx | 2 +- Source/cmCMakePresetsGraph.h | 2 +- Source/cmCMakePresetsGraphInternal.h | 2 +- Source/cmCMakePresetsGraphReadJSON.cxx | 2 +- Source/cmCMakePresetsGraphReadJSONBuildPresets.cxx | 2 +- Source/cmCMakePresetsGraphReadJSONConfigurePresets.cxx | 2 +- Source/cmCMakePresetsGraphReadJSONPackagePresets.cxx | 2 +- Source/cmCMakePresetsGraphReadJSONTestPresets.cxx | 2 +- Source/cmCMakePresetsGraphReadJSONWorkflowPresets.cxx | 2 +- Source/cmCPackPropertiesGenerator.h | 2 +- Source/cmCTest.cxx | 2 +- Source/cmCTest.h | 2 +- Source/cmCacheManager.cxx | 2 +- Source/cmCacheManager.h | 2 +- Source/cmCallVisualStudioMacro.cxx | 2 +- Source/cmCallVisualStudioMacro.h | 2 +- Source/cmCommandLineArgument.h | 2 +- Source/cmCommands.cxx | 2 +- Source/cmCommands.h | 2 +- Source/cmCommonTargetGenerator.cxx | 2 +- Source/cmCommonTargetGenerator.h | 2 +- Source/cmComputeComponentGraph.cxx | 2 +- Source/cmComputeComponentGraph.h | 2 +- Source/cmComputeLinkDepends.cxx | 2 +- Source/cmComputeLinkDepends.h | 2 +- Source/cmComputeLinkInformation.cxx | 2 +- Source/cmComputeLinkInformation.h | 2 +- Source/cmComputeTargetDepends.cxx | 2 +- Source/cmComputeTargetDepends.h | 2 +- Source/cmConditionEvaluator.cxx | 2 +- Source/cmConditionEvaluator.h | 2 +- Source/cmConfigure.cmake.h.in | 2 +- Source/cmConfigureFileCommand.cxx | 2 +- Source/cmConfigureFileCommand.h | 2 +- Source/cmConfigureLog.cxx | 2 +- Source/cmConfigureLog.h | 2 +- Source/cmConsoleBuf.cxx | 2 +- Source/cmConsoleBuf.h | 2 +- Source/cmConstStack.h | 2 +- Source/cmConstStack.tcc | 2 +- Source/cmContinueCommand.cxx | 2 +- Source/cmContinueCommand.h | 2 +- Source/cmConvertMSBuildXMLToJSON.py | 2 +- Source/cmCoreTryCompile.cxx | 2 +- Source/cmCoreTryCompile.h | 2 +- Source/cmCreateTestSourceList.cxx | 2 +- Source/cmCreateTestSourceList.h | 2 +- Source/cmCryptoHash.cxx | 2 +- Source/cmCryptoHash.h | 2 +- Source/cmCurl.cxx | 2 +- Source/cmCurl.h | 2 +- Source/cmCustomCommand.cxx | 2 +- Source/cmCustomCommand.h | 2 +- Source/cmCustomCommandGenerator.cxx | 2 +- Source/cmCustomCommandGenerator.h | 2 +- Source/cmCustomCommandLines.cxx | 2 +- Source/cmCustomCommandLines.h | 2 +- Source/cmCustomCommandTypes.h | 2 +- Source/cmCxxModuleMapper.cxx | 2 +- Source/cmCxxModuleMapper.h | 2 +- Source/cmCxxModuleUsageEffects.cxx | 2 +- Source/cmCxxModuleUsageEffects.h | 2 +- Source/cmDebugTools.h | 2 +- Source/cmDebuggerAdapter.cxx | 2 +- Source/cmDebuggerAdapter.h | 2 +- Source/cmDebuggerBreakpointManager.cxx | 2 +- Source/cmDebuggerBreakpointManager.h | 2 +- Source/cmDebuggerExceptionManager.cxx | 2 +- Source/cmDebuggerExceptionManager.h | 2 +- Source/cmDebuggerPosixPipeConnection.cxx | 2 +- Source/cmDebuggerPosixPipeConnection.h | 2 +- Source/cmDebuggerProtocol.cxx | 2 +- Source/cmDebuggerProtocol.h | 2 +- Source/cmDebuggerSourceBreakpoint.cxx | 2 +- Source/cmDebuggerSourceBreakpoint.h | 2 +- Source/cmDebuggerStackFrame.cxx | 2 +- Source/cmDebuggerStackFrame.h | 2 +- Source/cmDebuggerThread.cxx | 2 +- Source/cmDebuggerThread.h | 2 +- Source/cmDebuggerThreadManager.cxx | 2 +- Source/cmDebuggerThreadManager.h | 2 +- Source/cmDebuggerVariables.cxx | 2 +- Source/cmDebuggerVariables.h | 2 +- Source/cmDebuggerVariablesHelper.cxx | 2 +- Source/cmDebuggerVariablesHelper.h | 2 +- Source/cmDebuggerVariablesManager.cxx | 2 +- Source/cmDebuggerVariablesManager.h | 2 +- Source/cmDebuggerWindowsPipeConnection.cxx | 2 +- Source/cmDebuggerWindowsPipeConnection.h | 2 +- Source/cmDefinePropertyCommand.cxx | 2 +- Source/cmDefinePropertyCommand.h | 2 +- Source/cmDefinitions.cxx | 2 +- Source/cmDefinitions.h | 2 +- Source/cmDependencyProvider.h | 2 +- Source/cmDepends.cxx | 2 +- Source/cmDepends.h | 2 +- Source/cmDependsC.cxx | 2 +- Source/cmDependsC.h | 2 +- Source/cmDependsCompiler.cxx | 2 +- Source/cmDependsCompiler.h | 2 +- Source/cmDependsFortran.cxx | 2 +- Source/cmDependsFortran.h | 2 +- Source/cmDependsJava.cxx | 2 +- Source/cmDependsJava.h | 2 +- Source/cmDependsJavaParserHelper.cxx | 2 +- Source/cmDependsJavaParserHelper.h | 2 +- Source/cmDocumentation.cxx | 2 +- Source/cmDocumentation.h | 2 +- Source/cmDocumentationEntry.h | 2 +- Source/cmDocumentationFormatter.cxx | 2 +- Source/cmDocumentationFormatter.h | 2 +- Source/cmDocumentationSection.h | 2 +- Source/cmDuration.cxx | 2 +- Source/cmDuration.h | 2 +- Source/cmDynamicLoader.cxx | 2 +- Source/cmDynamicLoader.h | 2 +- Source/cmDyndepCollation.cxx | 2 +- Source/cmDyndepCollation.h | 2 +- Source/cmELF.cxx | 2 +- Source/cmELF.h | 2 +- Source/cmEnableLanguageCommand.cxx | 2 +- Source/cmEnableLanguageCommand.h | 2 +- Source/cmEnableTestingCommand.cxx | 2 +- Source/cmEnableTestingCommand.h | 2 +- Source/cmEvaluatedTargetProperty.cxx | 2 +- Source/cmEvaluatedTargetProperty.h | 2 +- Source/cmExecProgramCommand.cxx | 2 +- Source/cmExecProgramCommand.h | 2 +- Source/cmExecuteProcessCommand.cxx | 2 +- Source/cmExecuteProcessCommand.h | 2 +- Source/cmExecutionStatus.h | 2 +- Source/cmExpandedCommandArgument.cxx | 2 +- Source/cmExpandedCommandArgument.h | 2 +- Source/cmExperimental.cxx | 2 +- Source/cmExperimental.h | 2 +- Source/cmExportAndroidMKGenerator.cxx | 2 +- Source/cmExportAndroidMKGenerator.h | 2 +- Source/cmExportBuildAndroidMKGenerator.cxx | 2 +- Source/cmExportBuildAndroidMKGenerator.h | 2 +- Source/cmExportBuildCMakeConfigGenerator.cxx | 2 +- Source/cmExportBuildCMakeConfigGenerator.h | 2 +- Source/cmExportBuildFileGenerator.cxx | 2 +- Source/cmExportBuildFileGenerator.h | 2 +- Source/cmExportCMakeConfigGenerator.cxx | 2 +- Source/cmExportCMakeConfigGenerator.h | 2 +- Source/cmExportCommand.cxx | 2 +- Source/cmExportCommand.h | 2 +- Source/cmExportFileGenerator.cxx | 2 +- Source/cmExportFileGenerator.h | 2 +- Source/cmExportInstallAndroidMKGenerator.cxx | 2 +- Source/cmExportInstallAndroidMKGenerator.h | 2 +- Source/cmExportInstallCMakeConfigGenerator.cxx | 2 +- Source/cmExportInstallCMakeConfigGenerator.h | 2 +- Source/cmExportInstallFileGenerator.cxx | 2 +- Source/cmExportInstallFileGenerator.h | 2 +- Source/cmExportInstallPackageInfoGenerator.cxx | 2 +- Source/cmExportInstallPackageInfoGenerator.h | 2 +- Source/cmExportPackageInfoGenerator.cxx | 2 +- Source/cmExportPackageInfoGenerator.h | 2 +- Source/cmExportSet.cxx | 2 +- Source/cmExportSet.h | 2 +- Source/cmExportTryCompileFileGenerator.cxx | 2 +- Source/cmExportTryCompileFileGenerator.h | 2 +- Source/cmExprParserHelper.cxx | 2 +- Source/cmExprParserHelper.h | 2 +- Source/cmExternalMakefileProjectGenerator.cxx | 2 +- Source/cmExternalMakefileProjectGenerator.h | 2 +- Source/cmExtraCodeBlocksGenerator.cxx | 2 +- Source/cmExtraCodeBlocksGenerator.h | 2 +- Source/cmExtraCodeLiteGenerator.cxx | 2 +- Source/cmExtraCodeLiteGenerator.h | 2 +- Source/cmExtraEclipseCDT4Generator.cxx | 2 +- Source/cmExtraEclipseCDT4Generator.h | 2 +- Source/cmExtraKateGenerator.cxx | 2 +- Source/cmExtraKateGenerator.h | 2 +- Source/cmExtraSublimeTextGenerator.cxx | 2 +- Source/cmExtraSublimeTextGenerator.h | 2 +- Source/cmFLTKWrapUICommand.cxx | 2 +- Source/cmFLTKWrapUICommand.h | 2 +- Source/cmFSPermissions.cxx | 2 +- Source/cmFSPermissions.h | 2 +- Source/cmFileAPI.cxx | 2 +- Source/cmFileAPI.h | 2 +- Source/cmFileAPICMakeFiles.cxx | 2 +- Source/cmFileAPICMakeFiles.h | 2 +- Source/cmFileAPICache.cxx | 2 +- Source/cmFileAPICache.h | 2 +- Source/cmFileAPICodemodel.cxx | 2 +- Source/cmFileAPICodemodel.h | 2 +- Source/cmFileAPICommand.cxx | 2 +- Source/cmFileAPICommand.h | 2 +- Source/cmFileAPIConfigureLog.cxx | 2 +- Source/cmFileAPIConfigureLog.h | 2 +- Source/cmFileAPIToolchains.cxx | 2 +- Source/cmFileAPIToolchains.h | 2 +- Source/cmFileCommand.cxx | 2 +- Source/cmFileCommand.h | 2 +- Source/cmFileCommand_ReadMacho.cxx | 2 +- Source/cmFileCommand_ReadMacho.h | 2 +- Source/cmFileCopier.cxx | 2 +- Source/cmFileCopier.h | 2 +- Source/cmFileInstaller.cxx | 2 +- Source/cmFileInstaller.h | 2 +- Source/cmFileLock.cxx | 2 +- Source/cmFileLock.h | 2 +- Source/cmFileLockPool.cxx | 2 +- Source/cmFileLockPool.h | 2 +- Source/cmFileLockResult.cxx | 2 +- Source/cmFileLockResult.h | 2 +- Source/cmFileLockUnix.cxx | 2 +- Source/cmFileLockWin32.cxx | 2 +- Source/cmFilePathChecksum.cxx | 2 +- Source/cmFilePathChecksum.h | 2 +- Source/cmFileSet.cxx | 2 +- Source/cmFileSet.h | 2 +- Source/cmFileTime.cxx | 2 +- Source/cmFileTime.h | 2 +- Source/cmFileTimeCache.cxx | 2 +- Source/cmFileTimeCache.h | 2 +- Source/cmFileTimes.cxx | 2 +- Source/cmFileTimes.h | 2 +- Source/cmFindBase.cxx | 2 +- Source/cmFindBase.h | 2 +- Source/cmFindCommon.cxx | 2 +- Source/cmFindCommon.h | 2 +- Source/cmFindFileCommand.cxx | 2 +- Source/cmFindFileCommand.h | 2 +- Source/cmFindLibraryCommand.cxx | 2 +- Source/cmFindLibraryCommand.h | 2 +- Source/cmFindPackageCommand.cxx | 2 +- Source/cmFindPackageCommand.h | 2 +- Source/cmFindPackageStack.cxx | 2 +- Source/cmFindPackageStack.h | 2 +- Source/cmFindPathCommand.cxx | 2 +- Source/cmFindPathCommand.h | 2 +- Source/cmFindProgramCommand.cxx | 2 +- Source/cmFindProgramCommand.h | 2 +- Source/cmForEachCommand.cxx | 2 +- Source/cmForEachCommand.h | 2 +- Source/cmFortranParser.h | 2 +- Source/cmFortranParserImpl.cxx | 2 +- Source/cmFunctionBlocker.cxx | 2 +- Source/cmFunctionBlocker.h | 2 +- Source/cmFunctionCommand.cxx | 2 +- Source/cmFunctionCommand.h | 2 +- Source/cmGccDepfileLexerHelper.cxx | 2 +- Source/cmGccDepfileLexerHelper.h | 2 +- Source/cmGccDepfileReader.cxx | 2 +- Source/cmGccDepfileReader.h | 2 +- Source/cmGccDepfileReaderTypes.h | 2 +- Source/cmGeneratedFileStream.cxx | 2 +- Source/cmGeneratedFileStream.h | 2 +- Source/cmGeneratorExpression.cxx | 2 +- Source/cmGeneratorExpression.h | 2 +- Source/cmGeneratorExpressionContext.cxx | 2 +- Source/cmGeneratorExpressionContext.h | 2 +- Source/cmGeneratorExpressionDAGChecker.cxx | 2 +- Source/cmGeneratorExpressionDAGChecker.h | 2 +- Source/cmGeneratorExpressionEvaluationFile.cxx | 2 +- Source/cmGeneratorExpressionEvaluationFile.h | 2 +- Source/cmGeneratorExpressionEvaluator.cxx | 2 +- Source/cmGeneratorExpressionEvaluator.h | 2 +- Source/cmGeneratorExpressionLexer.cxx | 2 +- Source/cmGeneratorExpressionLexer.h | 2 +- Source/cmGeneratorExpressionNode.cxx | 2 +- Source/cmGeneratorExpressionNode.h | 2 +- Source/cmGeneratorExpressionParser.cxx | 2 +- Source/cmGeneratorExpressionParser.h | 2 +- Source/cmGeneratorOptions.h | 2 +- Source/cmGeneratorTarget.cxx | 2 +- Source/cmGeneratorTarget.h | 2 +- Source/cmGeneratorTarget_CompatibleInterface.cxx | 2 +- Source/cmGeneratorTarget_IncludeDirectories.cxx | 2 +- Source/cmGeneratorTarget_Link.cxx | 2 +- Source/cmGeneratorTarget_LinkDirectories.cxx | 2 +- Source/cmGeneratorTarget_Options.cxx | 2 +- Source/cmGeneratorTarget_Sources.cxx | 2 +- Source/cmGeneratorTarget_TargetPropertyEntry.cxx | 2 +- Source/cmGeneratorTarget_TransitiveProperty.cxx | 2 +- Source/cmGetCMakePropertyCommand.cxx | 2 +- Source/cmGetCMakePropertyCommand.h | 2 +- Source/cmGetDirectoryPropertyCommand.cxx | 2 +- Source/cmGetDirectoryPropertyCommand.h | 2 +- Source/cmGetFilenameComponentCommand.cxx | 2 +- Source/cmGetFilenameComponentCommand.h | 2 +- Source/cmGetPipes.cxx | 2 +- Source/cmGetPipes.h | 2 +- Source/cmGetPropertyCommand.cxx | 2 +- Source/cmGetPropertyCommand.h | 2 +- Source/cmGetSourceFilePropertyCommand.cxx | 2 +- Source/cmGetSourceFilePropertyCommand.h | 2 +- Source/cmGetTargetPropertyCommand.cxx | 2 +- Source/cmGetTargetPropertyCommand.h | 2 +- Source/cmGetTestPropertyCommand.cxx | 2 +- Source/cmGetTestPropertyCommand.h | 2 +- Source/cmGhsMultiGpj.cxx | 2 +- Source/cmGhsMultiGpj.h | 2 +- Source/cmGhsMultiTargetGenerator.cxx | 2 +- Source/cmGhsMultiTargetGenerator.h | 2 +- Source/cmGlobCacheEntry.h | 2 +- Source/cmGlobVerificationManager.cxx | 2 +- Source/cmGlobVerificationManager.h | 2 +- Source/cmGlobalBorlandMakefileGenerator.cxx | 2 +- Source/cmGlobalBorlandMakefileGenerator.h | 2 +- Source/cmGlobalCommonGenerator.cxx | 2 +- Source/cmGlobalCommonGenerator.h | 2 +- Source/cmGlobalGenerator.cxx | 2 +- Source/cmGlobalGenerator.h | 2 +- Source/cmGlobalGeneratorFactory.h | 2 +- Source/cmGlobalGhsMultiGenerator.cxx | 2 +- Source/cmGlobalGhsMultiGenerator.h | 2 +- Source/cmGlobalJOMMakefileGenerator.cxx | 2 +- Source/cmGlobalJOMMakefileGenerator.h | 2 +- Source/cmGlobalMSYSMakefileGenerator.cxx | 2 +- Source/cmGlobalMSYSMakefileGenerator.h | 2 +- Source/cmGlobalMinGWMakefileGenerator.cxx | 2 +- Source/cmGlobalMinGWMakefileGenerator.h | 2 +- Source/cmGlobalNMakeMakefileGenerator.cxx | 2 +- Source/cmGlobalNMakeMakefileGenerator.h | 2 +- Source/cmGlobalNinjaGenerator.cxx | 2 +- Source/cmGlobalNinjaGenerator.h | 2 +- Source/cmGlobalUnixMakefileGenerator3.cxx | 2 +- Source/cmGlobalUnixMakefileGenerator3.h | 2 +- Source/cmGlobalVisualStudio10Generator.cxx | 2 +- Source/cmGlobalVisualStudio10Generator.h | 2 +- Source/cmGlobalVisualStudio11Generator.cxx | 2 +- Source/cmGlobalVisualStudio11Generator.h | 2 +- Source/cmGlobalVisualStudio12Generator.cxx | 2 +- Source/cmGlobalVisualStudio12Generator.h | 2 +- Source/cmGlobalVisualStudio14Generator.cxx | 2 +- Source/cmGlobalVisualStudio14Generator.h | 2 +- Source/cmGlobalVisualStudio71Generator.cxx | 2 +- Source/cmGlobalVisualStudio71Generator.h | 2 +- Source/cmGlobalVisualStudio7Generator.cxx | 2 +- Source/cmGlobalVisualStudio7Generator.h | 2 +- Source/cmGlobalVisualStudio8Generator.cxx | 2 +- Source/cmGlobalVisualStudio8Generator.h | 2 +- Source/cmGlobalVisualStudioGenerator.cxx | 2 +- Source/cmGlobalVisualStudioGenerator.h | 2 +- Source/cmGlobalVisualStudioVersionedGenerator.cxx | 2 +- Source/cmGlobalVisualStudioVersionedGenerator.h | 2 +- Source/cmGlobalWatcomWMakeGenerator.cxx | 2 +- Source/cmGlobalWatcomWMakeGenerator.h | 2 +- Source/cmGlobalXCodeGenerator.cxx | 2 +- Source/cmGlobalXCodeGenerator.h | 2 +- Source/cmGraphAdjacencyList.h | 2 +- Source/cmGraphVizWriter.cxx | 2 +- Source/cmGraphVizWriter.h | 2 +- Source/cmHexFileConverter.cxx | 2 +- Source/cmHexFileConverter.h | 2 +- Source/cmIDEFlagTable.h | 2 +- Source/cmIDEOptions.cxx | 2 +- Source/cmIDEOptions.h | 2 +- Source/cmIfCommand.cxx | 2 +- Source/cmIfCommand.h | 2 +- Source/cmImportedCxxModuleInfo.cxx | 2 +- Source/cmImportedCxxModuleInfo.h | 2 +- Source/cmIncludeCommand.cxx | 2 +- Source/cmIncludeCommand.h | 2 +- Source/cmIncludeDirectoryCommand.cxx | 2 +- Source/cmIncludeDirectoryCommand.h | 2 +- Source/cmIncludeExternalMSProjectCommand.cxx | 2 +- Source/cmIncludeExternalMSProjectCommand.h | 2 +- Source/cmIncludeGuardCommand.cxx | 2 +- Source/cmIncludeGuardCommand.h | 2 +- Source/cmIncludeRegularExpressionCommand.cxx | 2 +- Source/cmIncludeRegularExpressionCommand.h | 2 +- Source/cmInstallAndroidMKExportGenerator.cxx | 2 +- Source/cmInstallAndroidMKExportGenerator.h | 2 +- Source/cmInstallCMakeConfigExportGenerator.cxx | 2 +- Source/cmInstallCMakeConfigExportGenerator.h | 2 +- Source/cmInstallCommand.cxx | 2 +- Source/cmInstallCommand.h | 2 +- Source/cmInstallCommandArguments.cxx | 2 +- Source/cmInstallCommandArguments.h | 2 +- Source/cmInstallCxxModuleBmiGenerator.cxx | 2 +- Source/cmInstallCxxModuleBmiGenerator.h | 2 +- Source/cmInstallDirectoryGenerator.cxx | 2 +- Source/cmInstallDirectoryGenerator.h | 2 +- Source/cmInstallExportGenerator.cxx | 2 +- Source/cmInstallExportGenerator.h | 2 +- Source/cmInstallFileSetGenerator.cxx | 2 +- Source/cmInstallFileSetGenerator.h | 2 +- Source/cmInstallFilesCommand.cxx | 2 +- Source/cmInstallFilesCommand.h | 2 +- Source/cmInstallFilesGenerator.cxx | 2 +- Source/cmInstallFilesGenerator.h | 2 +- Source/cmInstallGenerator.cxx | 2 +- Source/cmInstallGenerator.h | 2 +- Source/cmInstallGetRuntimeDependenciesGenerator.cxx | 2 +- Source/cmInstallGetRuntimeDependenciesGenerator.h | 2 +- Source/cmInstallImportedRuntimeArtifactsGenerator.cxx | 2 +- Source/cmInstallImportedRuntimeArtifactsGenerator.h | 2 +- Source/cmInstallMode.h | 2 +- Source/cmInstallPackageInfoExportGenerator.cxx | 2 +- Source/cmInstallPackageInfoExportGenerator.h | 2 +- Source/cmInstallProgramsCommand.cxx | 2 +- Source/cmInstallProgramsCommand.h | 2 +- Source/cmInstallRuntimeDependencySet.cxx | 2 +- Source/cmInstallRuntimeDependencySet.h | 2 +- Source/cmInstallRuntimeDependencySetGenerator.cxx | 2 +- Source/cmInstallRuntimeDependencySetGenerator.h | 2 +- Source/cmInstallScriptGenerator.cxx | 2 +- Source/cmInstallScriptGenerator.h | 2 +- Source/cmInstallScriptHandler.cxx | 2 +- Source/cmInstallScriptHandler.h | 2 +- Source/cmInstallSubdirectoryGenerator.cxx | 2 +- Source/cmInstallSubdirectoryGenerator.h | 2 +- Source/cmInstallTargetGenerator.cxx | 2 +- Source/cmInstallTargetGenerator.h | 2 +- Source/cmInstallTargetsCommand.cxx | 2 +- Source/cmInstallTargetsCommand.h | 2 +- Source/cmInstallType.h | 2 +- Source/cmInstalledFile.cxx | 2 +- Source/cmInstalledFile.h | 2 +- Source/cmInstrumentation.h | 2 +- Source/cmInstrumentationCommand.cxx | 2 +- Source/cmInstrumentationCommand.h | 2 +- Source/cmInstrumentationQuery.h | 2 +- Source/cmJSONHelpers.cxx | 2 +- Source/cmJSONHelpers.h | 2 +- Source/cmJSONState.cxx | 2 +- Source/cmJSONState.h | 2 +- Source/cmLDConfigLDConfigTool.cxx | 2 +- Source/cmLDConfigLDConfigTool.h | 2 +- Source/cmLDConfigTool.cxx | 2 +- Source/cmLDConfigTool.h | 2 +- Source/cmLinkDirectoriesCommand.cxx | 2 +- Source/cmLinkDirectoriesCommand.h | 2 +- Source/cmLinkItem.cxx | 2 +- Source/cmLinkItem.h | 2 +- Source/cmLinkItemGraphVisitor.cxx | 2 +- Source/cmLinkItemGraphVisitor.h | 2 +- Source/cmLinkLibrariesCommand.cxx | 2 +- Source/cmLinkLibrariesCommand.h | 2 +- Source/cmLinkLineComputer.cxx | 2 +- Source/cmLinkLineComputer.h | 2 +- Source/cmLinkLineDeviceComputer.cxx | 2 +- Source/cmLinkLineDeviceComputer.h | 2 +- Source/cmLinkedTree.h | 2 +- Source/cmList.cxx | 2 +- Source/cmList.h | 2 +- Source/cmListCommand.cxx | 2 +- Source/cmListCommand.h | 2 +- Source/cmListFileCache.cxx | 2 +- Source/cmListFileCache.h | 2 +- Source/cmListFileLexer.h | 2 +- Source/cmLoadCacheCommand.cxx | 2 +- Source/cmLoadCacheCommand.h | 2 +- Source/cmLocalCommonGenerator.cxx | 2 +- Source/cmLocalCommonGenerator.h | 2 +- Source/cmLocalGenerator.cxx | 2 +- Source/cmLocalGenerator.h | 2 +- Source/cmLocalGhsMultiGenerator.cxx | 2 +- Source/cmLocalGhsMultiGenerator.h | 2 +- Source/cmLocalNinjaGenerator.cxx | 2 +- Source/cmLocalNinjaGenerator.h | 2 +- Source/cmLocalUnixMakefileGenerator3.cxx | 2 +- Source/cmLocalUnixMakefileGenerator3.h | 2 +- Source/cmLocalVisualStudio10Generator.cxx | 2 +- Source/cmLocalVisualStudio10Generator.h | 2 +- Source/cmLocalVisualStudio7Generator.cxx | 2 +- Source/cmLocalVisualStudio7Generator.h | 2 +- Source/cmLocalVisualStudioGenerator.cxx | 2 +- Source/cmLocalVisualStudioGenerator.h | 2 +- Source/cmLocalXCodeGenerator.cxx | 2 +- Source/cmLocalXCodeGenerator.h | 2 +- Source/cmLocale.h | 2 +- Source/cmMSVC60LinkLineComputer.cxx | 2 +- Source/cmMSVC60LinkLineComputer.h | 2 +- Source/cmMachO.cxx | 2 +- Source/cmMachO.h | 2 +- Source/cmMacroCommand.cxx | 2 +- Source/cmMacroCommand.h | 2 +- Source/cmMakeDirectoryCommand.cxx | 2 +- Source/cmMakeDirectoryCommand.h | 2 +- Source/cmMakefile.cxx | 2 +- Source/cmMakefile.h | 2 +- Source/cmMakefileExecutableTargetGenerator.cxx | 2 +- Source/cmMakefileExecutableTargetGenerator.h | 2 +- Source/cmMakefileLibraryTargetGenerator.cxx | 2 +- Source/cmMakefileLibraryTargetGenerator.h | 2 +- Source/cmMakefileProfilingData.cxx | 2 +- Source/cmMakefileProfilingData.h | 2 +- Source/cmMakefileTargetGenerator.cxx | 2 +- Source/cmMakefileTargetGenerator.h | 2 +- Source/cmMakefileUtilityTargetGenerator.cxx | 2 +- Source/cmMakefileUtilityTargetGenerator.h | 2 +- Source/cmMarkAsAdvancedCommand.cxx | 2 +- Source/cmMarkAsAdvancedCommand.h | 2 +- Source/cmMathCommand.cxx | 2 +- Source/cmMathCommand.h | 2 +- Source/cmMessageCommand.cxx | 2 +- Source/cmMessageCommand.h | 2 +- Source/cmMessageMetadata.h | 2 +- Source/cmMessageType.h | 2 +- Source/cmMessenger.cxx | 2 +- Source/cmMessenger.h | 2 +- Source/cmNewLineStyle.cxx | 2 +- Source/cmNewLineStyle.h | 2 +- Source/cmNinjaLinkLineComputer.cxx | 2 +- Source/cmNinjaLinkLineComputer.h | 2 +- Source/cmNinjaLinkLineDeviceComputer.cxx | 2 +- Source/cmNinjaLinkLineDeviceComputer.h | 2 +- Source/cmNinjaNormalTargetGenerator.cxx | 2 +- Source/cmNinjaNormalTargetGenerator.h | 2 +- Source/cmNinjaTargetGenerator.cxx | 2 +- Source/cmNinjaTargetGenerator.h | 2 +- Source/cmNinjaTypes.h | 2 +- Source/cmNinjaUtilityTargetGenerator.cxx | 2 +- Source/cmNinjaUtilityTargetGenerator.h | 2 +- Source/cmOSXBundleGenerator.cxx | 2 +- Source/cmOSXBundleGenerator.h | 2 +- Source/cmOptionCommand.cxx | 2 +- Source/cmOptionCommand.h | 2 +- Source/cmOrderDirectories.cxx | 2 +- Source/cmOrderDirectories.h | 2 +- Source/cmOutputConverter.cxx | 2 +- Source/cmOutputConverter.h | 2 +- Source/cmPackageInfoReader.cxx | 2 +- Source/cmPackageInfoReader.h | 2 +- Source/cmParseArgumentsCommand.cxx | 2 +- Source/cmParseArgumentsCommand.h | 2 +- Source/cmPathLabel.cxx | 2 +- Source/cmPathLabel.h | 2 +- Source/cmPathResolver.cxx | 2 +- Source/cmPathResolver.h | 2 +- Source/cmPkgConfigParser.cxx | 2 +- Source/cmPkgConfigParser.h | 2 +- Source/cmPkgConfigResolver.cxx | 2 +- Source/cmPkgConfigResolver.h | 2 +- Source/cmPlaceholderExpander.cxx | 2 +- Source/cmPlaceholderExpander.h | 2 +- Source/cmPlistParser.cxx | 2 +- Source/cmPlistParser.h | 2 +- Source/cmPolicies.cxx | 2 +- Source/cmPolicies.h | 2 +- Source/cmProcessOutput.cxx | 2 +- Source/cmProcessOutput.h | 2 +- Source/cmProcessTools.cxx | 2 +- Source/cmProcessTools.h | 2 +- Source/cmProjectCommand.cxx | 2 +- Source/cmProjectCommand.h | 2 +- Source/cmProperty.h | 2 +- Source/cmPropertyDefinition.cxx | 2 +- Source/cmPropertyDefinition.h | 2 +- Source/cmPropertyMap.cxx | 2 +- Source/cmPropertyMap.h | 2 +- Source/cmQTWrapCPPCommand.cxx | 2 +- Source/cmQTWrapCPPCommand.h | 2 +- Source/cmQTWrapUICommand.cxx | 2 +- Source/cmQTWrapUICommand.h | 2 +- Source/cmQtAutoGen.cxx | 2 +- Source/cmQtAutoGen.h | 2 +- Source/cmQtAutoGenGlobalInitializer.cxx | 2 +- Source/cmQtAutoGenGlobalInitializer.h | 2 +- Source/cmQtAutoGenInitializer.cxx | 2 +- Source/cmQtAutoGenInitializer.h | 2 +- Source/cmQtAutoGenerator.cxx | 2 +- Source/cmQtAutoGenerator.h | 2 +- Source/cmQtAutoMocUic.cxx | 2 +- Source/cmQtAutoMocUic.h | 2 +- Source/cmQtAutoRcc.cxx | 2 +- Source/cmQtAutoRcc.h | 2 +- Source/cmRST.cxx | 2 +- Source/cmRST.h | 2 +- Source/cmRange.h | 2 +- Source/cmRemoveCommand.cxx | 2 +- Source/cmRemoveCommand.h | 2 +- Source/cmRemoveDefinitionsCommand.cxx | 2 +- Source/cmRemoveDefinitionsCommand.h | 2 +- Source/cmReturnCommand.cxx | 2 +- Source/cmReturnCommand.h | 2 +- Source/cmRulePlaceholderExpander.cxx | 2 +- Source/cmRulePlaceholderExpander.h | 2 +- Source/cmRuntimeDependencyArchive.cxx | 2 +- Source/cmRuntimeDependencyArchive.h | 2 +- Source/cmSarifLog.cxx | 2 +- Source/cmSarifLog.h | 2 +- Source/cmScanDepFormat.cxx | 2 +- Source/cmScanDepFormat.h | 2 +- Source/cmScriptGenerator.cxx | 2 +- Source/cmScriptGenerator.h | 2 +- Source/cmSearchPath.cxx | 2 +- Source/cmSearchPath.h | 2 +- Source/cmSeparateArgumentsCommand.cxx | 2 +- Source/cmSeparateArgumentsCommand.h | 2 +- Source/cmSetCommand.cxx | 2 +- Source/cmSetCommand.h | 2 +- Source/cmSetDirectoryPropertiesCommand.cxx | 2 +- Source/cmSetDirectoryPropertiesCommand.h | 2 +- Source/cmSetPropertyCommand.cxx | 2 +- Source/cmSetPropertyCommand.h | 2 +- Source/cmSetSourceFilesPropertiesCommand.cxx | 2 +- Source/cmSetSourceFilesPropertiesCommand.h | 2 +- Source/cmSetTargetPropertiesCommand.cxx | 2 +- Source/cmSetTargetPropertiesCommand.h | 2 +- Source/cmSetTestsPropertiesCommand.cxx | 2 +- Source/cmSetTestsPropertiesCommand.h | 2 +- Source/cmSiteNameCommand.cxx | 2 +- Source/cmSiteNameCommand.h | 2 +- Source/cmSourceFile.cxx | 2 +- Source/cmSourceFile.h | 2 +- Source/cmSourceFileLocation.cxx | 2 +- Source/cmSourceFileLocation.h | 2 +- Source/cmSourceFileLocationKind.h | 2 +- Source/cmSourceGroup.cxx | 2 +- Source/cmSourceGroup.h | 2 +- Source/cmSourceGroupCommand.cxx | 2 +- Source/cmSourceGroupCommand.h | 2 +- Source/cmStandardLevel.h | 2 +- Source/cmStandardLevelResolver.cxx | 2 +- Source/cmStandardLevelResolver.h | 2 +- Source/cmStandardLexer.h | 2 +- Source/cmState.cxx | 2 +- Source/cmState.h | 2 +- Source/cmStateDirectory.cxx | 2 +- Source/cmStateDirectory.h | 2 +- Source/cmStatePrivate.h | 2 +- Source/cmStateSnapshot.cxx | 2 +- Source/cmStateSnapshot.h | 2 +- Source/cmStateTypes.h | 2 +- Source/cmString.cxx | 2 +- Source/cmString.hxx | 2 +- Source/cmStringAlgorithms.cxx | 2 +- Source/cmStringAlgorithms.h | 2 +- Source/cmStringCommand.cxx | 2 +- Source/cmStringCommand.h | 2 +- Source/cmStringReplaceHelper.cxx | 2 +- Source/cmStringReplaceHelper.h | 2 +- Source/cmSubcommandTable.cxx | 2 +- Source/cmSubcommandTable.h | 2 +- Source/cmSubdirCommand.cxx | 2 +- Source/cmSubdirCommand.h | 2 +- Source/cmSyntheticTargetCache.h | 2 +- Source/cmSystemTools.cxx | 2 +- Source/cmSystemTools.h | 2 +- Source/cmTarget.cxx | 2 +- Source/cmTarget.h | 2 +- Source/cmTargetCompileDefinitionsCommand.cxx | 2 +- Source/cmTargetCompileDefinitionsCommand.h | 2 +- Source/cmTargetCompileFeaturesCommand.cxx | 2 +- Source/cmTargetCompileFeaturesCommand.h | 2 +- Source/cmTargetCompileOptionsCommand.cxx | 2 +- Source/cmTargetCompileOptionsCommand.h | 2 +- Source/cmTargetDepend.h | 2 +- Source/cmTargetExport.h | 2 +- Source/cmTargetIncludeDirectoriesCommand.cxx | 2 +- Source/cmTargetIncludeDirectoriesCommand.h | 2 +- Source/cmTargetLinkDirectoriesCommand.cxx | 2 +- Source/cmTargetLinkDirectoriesCommand.h | 2 +- Source/cmTargetLinkLibrariesCommand.cxx | 2 +- Source/cmTargetLinkLibrariesCommand.h | 2 +- Source/cmTargetLinkLibraryType.h | 2 +- Source/cmTargetLinkOptionsCommand.cxx | 2 +- Source/cmTargetLinkOptionsCommand.h | 2 +- Source/cmTargetPrecompileHeadersCommand.cxx | 2 +- Source/cmTargetPrecompileHeadersCommand.h | 2 +- Source/cmTargetPropCommandBase.cxx | 2 +- Source/cmTargetPropCommandBase.h | 2 +- Source/cmTargetPropertyComputer.cxx | 2 +- Source/cmTargetPropertyComputer.h | 2 +- Source/cmTargetSourcesCommand.cxx | 2 +- Source/cmTargetSourcesCommand.h | 2 +- Source/cmTargetTraceDependencies.cxx | 2 +- Source/cmTargetTraceDependencies.h | 2 +- Source/cmTest.cxx | 2 +- Source/cmTest.h | 2 +- Source/cmTestGenerator.cxx | 2 +- Source/cmTestGenerator.h | 2 +- Source/cmTimestamp.cxx | 2 +- Source/cmTimestamp.h | 2 +- Source/cmTransformDepfile.cxx | 2 +- Source/cmTransformDepfile.h | 2 +- Source/cmTryCompileCommand.cxx | 2 +- Source/cmTryCompileCommand.h | 2 +- Source/cmTryRunCommand.cxx | 2 +- Source/cmTryRunCommand.h | 2 +- Source/cmUVHandlePtr.cxx | 2 +- Source/cmUVHandlePtr.h | 2 +- Source/cmUVProcessChain.cxx | 2 +- Source/cmUVProcessChain.h | 2 +- Source/cmUVStream.h | 2 +- Source/cmUVStreambuf.h | 2 +- Source/cmUnsetCommand.cxx | 2 +- Source/cmUnsetCommand.h | 2 +- Source/cmUtils.hxx | 2 +- Source/cmUuid.cxx | 2 +- Source/cmUuid.h | 2 +- Source/cmVSSetupHelper.cxx | 2 +- Source/cmVSSetupHelper.h | 2 +- Source/cmValue.h | 2 +- Source/cmVariableWatch.cxx | 2 +- Source/cmVariableWatch.h | 2 +- Source/cmVariableWatchCommand.cxx | 2 +- Source/cmVariableWatchCommand.h | 2 +- Source/cmVersion.cxx | 2 +- Source/cmVersion.h | 2 +- Source/cmVersionConfig.h.in | 2 +- Source/cmVersionMacros.h | 2 +- Source/cmVisualStudio10TargetGenerator.cxx | 2 +- Source/cmVisualStudio10TargetGenerator.h | 2 +- Source/cmVisualStudioGeneratorOptions.h | 2 +- Source/cmVisualStudioSlnData.cxx | 2 +- Source/cmVisualStudioSlnData.h | 2 +- Source/cmVisualStudioSlnParser.cxx | 2 +- Source/cmVisualStudioSlnParser.h | 2 +- Source/cmVisualStudioWCEPlatformParser.cxx | 2 +- Source/cmVisualStudioWCEPlatformParser.h | 2 +- Source/cmVsProjectType.h | 2 +- Source/cmWhileCommand.cxx | 2 +- Source/cmWhileCommand.h | 2 +- Source/cmWindowsRegistry.cxx | 2 +- Source/cmWindowsRegistry.h | 2 +- Source/cmWorkerPool.cxx | 2 +- Source/cmWorkerPool.h | 2 +- Source/cmWorkingDirectory.cxx | 2 +- Source/cmWorkingDirectory.h | 2 +- Source/cmWriteFileCommand.cxx | 2 +- Source/cmWriteFileCommand.h | 2 +- Source/cmXCOFF.cxx | 2 +- Source/cmXCOFF.h | 2 +- Source/cmXCode21Object.cxx | 2 +- Source/cmXCode21Object.h | 2 +- Source/cmXCodeObject.cxx | 2 +- Source/cmXCodeObject.h | 2 +- Source/cmXCodeScheme.cxx | 2 +- Source/cmXCodeScheme.h | 2 +- Source/cmXMLParser.cxx | 2 +- Source/cmXMLParser.h | 2 +- Source/cmXMLSafe.cxx | 2 +- Source/cmXMLSafe.h | 2 +- Source/cmXMLWriter.cxx | 2 +- Source/cmXMLWriter.h | 2 +- Source/cmXcFramework.cxx | 2 +- Source/cmXcFramework.h | 2 +- Source/cm_codecvt.cxx | 2 +- Source/cm_codecvt.hxx | 2 +- Source/cm_codecvt_Encoding.hxx | 2 +- Source/cm_fileno.cxx | 2 +- Source/cm_fileno.hxx | 2 +- Source/cm_get_date.c | 2 +- Source/cm_get_date.h | 2 +- Source/cm_sys_stat.h | 2 +- Source/cm_utf8.c | 2 +- Source/cm_utf8.h | 2 +- Source/cmake.cxx | 2 +- Source/cmake.h | 2 +- Source/cmakemain.cxx | 2 +- Source/cmcmd.cxx | 2 +- Source/cmcmd.h | 2 +- Source/ctest.cxx | 2 +- Tests/CMakeGUI/CMakeGUITest.cxx | 2 +- Tests/CMakeGUI/CMakeGUITest.h | 2 +- Tests/CMakeGUI/CatchShow.cxx | 2 +- Tests/CMakeGUI/CatchShow.h | 2 +- Tests/CMakeGUI/CatchShowTest.cxx | 2 +- Tests/CMakeGUI/CatchShowTest.h | 2 +- Tests/CMakeGUI/EnvironmentDialogTest.cxx | 2 +- Tests/CMakeGUI/EnvironmentDialogTest.h | 2 +- Tests/CMakeGUI/QCMakeCacheModelTest.cxx | 2 +- Tests/CMakeGUI/QCMakeCacheModelTest.h | 2 +- Tests/CMakeGUI/QCMakePresetComboBoxTest.cxx | 2 +- Tests/CMakeGUI/QCMakePresetComboBoxTest.h | 2 +- Tests/CMakeGUI/QCMakePresetItemModelTest.cxx | 2 +- Tests/CMakeGUI/QCMakePresetItemModelTest.h | 2 +- Tests/CMakeGUI/QCMakePresetTest.cxx | 2 +- Tests/CMakeGUI/QCMakePresetTest.h | 2 +- Tests/CMakeLib/testAffinity.cxx | 2 +- Tests/CMakeLib/testArgumentParser.cxx | 2 +- Tests/CMakeLib/testAssert.cxx | 2 +- Tests/CMakeLib/testCMFilesystemPath.cxx | 2 +- Tests/CMakeLib/testCMakePath.cxx | 2 +- Tests/CMakeLib/testCTestResourceGroups.cxx | 2 +- Tests/CMakeLib/testCommon.h | 2 +- Tests/CMakeLib/testConfig.h.in | 2 +- Tests/CMakeLib/testDebugger.h | 2 +- Tests/CMakeLib/testDebuggerAdapter.cxx | 2 +- Tests/CMakeLib/testDebuggerAdapterPipe.cxx | 2 +- Tests/CMakeLib/testDebuggerBreakpointManager.cxx | 2 +- Tests/CMakeLib/testDebuggerNamedPipe.cxx | 2 +- Tests/CMakeLib/testDebuggerVariables.cxx | 2 +- Tests/CMakeLib/testDebuggerVariablesHelper.cxx | 2 +- Tests/CMakeLib/testDebuggerVariablesManager.cxx | 2 +- Tests/CMakeLib/testDocumentationFormatter.cxx | 2 +- Tests/CMakeLib/testFindPackageCommand.cxx | 2 +- Tests/CMakeLib/testGeneratedFileStream.cxx | 2 +- Tests/CMakeLib/testList.cxx | 2 +- Tests/CMakeLib/testPathResolver.cxx | 2 +- Tests/CMakeLib/testRST.cxx | 2 +- Tests/CMakeLib/testRange.cxx | 2 +- Tests/CMakeLib/testString.cxx | 2 +- Tests/CMakeLib/testStringAlgorithms.cxx | 2 +- Tests/CMakeLib/testSystemTools.cxx | 2 +- Tests/CMakeLib/testUTF8.cxx | 2 +- Tests/CMakeLib/testUVPatches.cxx | 2 +- Tests/CMakeLib/testXMLSafe.cxx | 2 +- Tests/CheckFortran.cmake | 2 +- Tests/Fuzzing/xml_parser_fuzzer.cc | 2 +- Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt.in | 2 +- Tests/GhsMulti/GhsMultiCopyFile/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt.in | 2 +- Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiDepOrder/exec/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiDepOrder/lib/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiDepOrder/protolib/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiExclude/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiExclude/verify.cmake | 2 +- Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityDD/CMakeLists.txt | 2 +- .../GhsMultiIntegrity/GhsMultiIntegrityMonolith/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiInterface/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt.in | 2 +- Tests/GhsMulti/GhsMultiLinkTestSub/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiLinkTestSub/sub_exe/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiLinkTestSub/sub_lib/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiMultipleProjects/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiMultipleProjects/sub/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiMultipleProjects/sub2/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiMultipleProjects/verify.cmake | 2 +- Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiPlatform/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiRenameInstall/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiSrcGroups/CMakeLists.txt | 2 +- Tests/GhsMulti/GhsMultiUnsupportedTargets/CMakeLists.txt | 2 +- Tests/QtAutogen/Complex/abc.cpp | 2 +- Tests/QtAutogen/Complex/abc.h | 2 +- Tests/QtAutogen/Complex/abc_p.h | 2 +- Tests/QtAutogen/Complex/bar.cpp | 2 +- Tests/QtAutogen/Complex/blub.cpp | 2 +- Tests/QtAutogen/Complex/blub.h | 2 +- Tests/QtAutogen/Complex/foo.cpp | 2 +- Tests/QtAutogen/Complex/foo.h | 2 +- Tests/QtAutogen/Complex/sub/bar.h | 2 +- Tests/QtAutogen/Complex/xyz.cpp | 2 +- Tests/QtAutogen/Complex/xyz.h | 2 +- Tests/QtAutogen/Complex/yaf.cpp | 2 +- Tests/QtAutogen/Complex/yaf.h | 2 +- Tests/QtAutogen/Complex/yaf_p.h | 2 +- Tests/RunCMake/CMakeLists.txt | 2 +- Tests/RunCMake/RunCMake.cmake | 2 +- Tests/RunCMake/RunCPack.cmake | 2 +- Tests/RunCMake/RunCPack/verify.cmake | 2 +- Tests/RunCMake/RunCTest.cmake | 2 +- Utilities/CMakeLists.txt | 2 +- Utilities/ClangTidyModule/CMakeLists.txt | 2 +- Utilities/ClangTidyModule/Module.cxx | 2 +- Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.cxx | 2 +- Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.h | 2 +- Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.cxx | 2 +- Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.h | 2 +- Utilities/ClangTidyModule/UseBespokeEnumClassCheck.cxx | 2 +- Utilities/ClangTidyModule/UseBespokeEnumClassCheck.h | 2 +- Utilities/ClangTidyModule/UseCmstrlenCheck.cxx | 2 +- Utilities/ClangTidyModule/UseCmstrlenCheck.h | 2 +- Utilities/ClangTidyModule/UseCmsysFstreamCheck.cxx | 2 +- Utilities/ClangTidyModule/UseCmsysFstreamCheck.h | 2 +- Utilities/ClangTidyModule/UsePragmaOnceCheck.cxx | 2 +- Utilities/ClangTidyModule/UsePragmaOnceCheck.h | 2 +- Utilities/Doxygen/CMakeLists.txt | 2 +- Utilities/Git/commit-msg | 2 +- Utilities/Git/pre-commit | 2 +- Utilities/Git/prepare-commit-msg | 2 +- Utilities/Release/linux/aarch64/Dockerfile | 2 +- Utilities/Release/linux/aarch64/base/Dockerfile | 2 +- Utilities/Release/linux/aarch64/deps/Dockerfile | 2 +- Utilities/Release/linux/aarch64/test/Dockerfile | 2 +- Utilities/Release/linux/aarch64/test/test-make.bash | 2 +- Utilities/Release/linux/aarch64/test/test-ninja.bash | 2 +- Utilities/Release/linux/x86_64/Dockerfile | 2 +- Utilities/Release/linux/x86_64/base/Dockerfile | 2 +- Utilities/Release/linux/x86_64/deps/Dockerfile | 2 +- Utilities/Release/linux/x86_64/test/Dockerfile | 2 +- Utilities/Release/linux/x86_64/test/test-make.bash | 2 +- Utilities/Release/linux/x86_64/test/test-ninja.bash | 2 +- Utilities/Release/win/qt-5.15.10-win-x86-msvc.ps1 | 2 +- Utilities/Release/win/qtbase-6.3.0-win-msvc.cmake | 2 +- Utilities/Release/win/sign-package.ps1 | 2 +- Utilities/Scripts/BoostScanDeps.cmake | 2 +- Utilities/Sphinx/CMakeLists.txt | 2 +- Utilities/Sphinx/CTestConfig.cmake | 2 +- Utilities/Sphinx/cmake.py | 2 +- Utilities/Sphinx/conf.py.in | 2 +- Utilities/cm3p/Setup.Configuration.h | 2 +- Utilities/cm3p/archive.h | 2 +- Utilities/cm3p/archive_entry.h | 2 +- Utilities/cm3p/bzlib.h | 2 +- Utilities/cm3p/cppdap/dap.h | 2 +- Utilities/cm3p/cppdap/future.h | 2 +- Utilities/cm3p/cppdap/io.h | 2 +- Utilities/cm3p/cppdap/optional.h | 2 +- Utilities/cm3p/cppdap/protocol.h | 2 +- Utilities/cm3p/cppdap/session.h | 2 +- Utilities/cm3p/cppdap/types.h | 2 +- Utilities/cm3p/curl/curl.h | 2 +- Utilities/cm3p/expat.h | 2 +- Utilities/cm3p/json/forwards.h | 2 +- Utilities/cm3p/json/json.h | 2 +- Utilities/cm3p/json/reader.h | 2 +- Utilities/cm3p/json/value.h | 2 +- Utilities/cm3p/json/version.h | 2 +- Utilities/cm3p/json/writer.h | 2 +- Utilities/cm3p/kwiml/abi.h | 2 +- Utilities/cm3p/kwiml/int.h | 2 +- Utilities/cm3p/lzma.h | 2 +- Utilities/cm3p/rhash.h | 2 +- Utilities/cm3p/uv.h | 2 +- Utilities/cm3p/zlib.h | 2 +- Utilities/cm3p/zstd.h | 2 +- Utilities/cmThirdParty.h.in | 2 +- Utilities/cmThirdPartyChecks.cmake | 2 +- Utilities/cmllpkgc/llpkgc.c | 2 +- Utilities/cmllpkgc/llpkgc.h | 2 +- Utilities/cmllpkgc/llpkgc__internal.c | 2 +- Utilities/cmllpkgc/llpkgc__internal.h | 2 +- Utilities/std/cm/algorithm | 2 +- Utilities/std/cm/array | 2 +- Utilities/std/cm/bits/container_helpers.hxx | 2 +- Utilities/std/cm/bits/erase_if.hxx | 2 +- Utilities/std/cm/bits/fs_path.cxx | 2 +- Utilities/std/cm/bits/string_view.cxx | 2 +- Utilities/std/cm/deque | 2 +- Utilities/std/cm/filesystem | 2 +- Utilities/std/cm/forward_list | 2 +- Utilities/std/cm/iomanip | 2 +- Utilities/std/cm/iterator | 2 +- Utilities/std/cm/list | 2 +- Utilities/std/cm/map | 2 +- Utilities/std/cm/memory | 2 +- Utilities/std/cm/optional | 2 +- Utilities/std/cm/set | 2 +- Utilities/std/cm/shared_mutex | 2 +- Utilities/std/cm/string | 2 +- Utilities/std/cm/string_view | 2 +- Utilities/std/cm/type_traits | 2 +- Utilities/std/cm/unordered_map | 2 +- Utilities/std/cm/unordered_set | 2 +- Utilities/std/cm/utility | 2 +- Utilities/std/cm/vector | 2 +- Utilities/std/cmSTL.hxx.in | 2 +- Utilities/std/cmext/algorithm | 2 +- Utilities/std/cmext/enum_set | 2 +- Utilities/std/cmext/iterator | 2 +- Utilities/std/cmext/memory | 2 +- Utilities/std/cmext/string_view | 2 +- Utilities/std/cmext/type_traits | 2 +- bootstrap | 2 +- 2151 files changed, 2152 insertions(+), 2152 deletions(-) diff --git a/.hooks-config b/.hooks-config index 064371c..320bf4c 100644 --- a/.hooks-config +++ b/.hooks-config @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Loaded by .git/hooks/(pre-commit|commit-msg|prepare-commit-msg) # during git commit after local hooks have been installed. diff --git a/Auxiliary/cmake-mode.el b/Auxiliary/cmake-mode.el index 2b7da10..7cfb2ba 100644 --- a/Auxiliary/cmake-mode.el +++ b/Auxiliary/cmake-mode.el @@ -3,7 +3,7 @@ ;; Package-Requires: ((emacs "24.1")) ; Distributed under the OSI-approved BSD 3-Clause License. See accompanying -; file Copyright.txt or https://cmake.org/licensing for details. +; file LICENSE.rst or https://cmake.org/licensing for details. ;------------------------------------------------------------------------------ diff --git a/Auxiliary/cmake.m4 b/Auxiliary/cmake.m4 index 39826bc..205b0e4 100644 --- a/Auxiliary/cmake.m4 +++ b/Auxiliary/cmake.m4 @@ -1,5 +1,5 @@ dnl Distributed under the OSI-approved BSD 3-Clause License. See accompanying -dnl file Copyright.txt or https://cmake.org/licensing for details. +dnl file LICENSE.rst or https://cmake.org/licensing for details. AC_DEFUN([CMAKE_FIND_BINARY], [AC_ARG_VAR([CMAKE_BINARY], [path to the cmake binary])dnl diff --git a/CMakeCPack.cmake b/CMakeCPack.cmake index b88da62..75cc5d9 100644 --- a/CMakeCPack.cmake +++ b/CMakeCPack.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. option(CMAKE_INSTALL_DEBUG_LIBRARIES "Install Microsoft runtime debug libraries with CMake." FALSE) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7fd071..deb8bca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.13...3.30 FATAL_ERROR) set(CMAKE_USER_MAKE_RULES_OVERRIDE_C ${CMAKE_CURRENT_SOURCE_DIR}/Source/Modules/OverrideC.cmake) diff --git a/CTestConfig.cmake b/CTestConfig.cmake index 476a1c6..3e4c187 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # If changing this file, also update Utilities/Sphinx/CTestConfig.cmake diff --git a/CompileFlags.cmake b/CompileFlags.cmake index 3080daa..14f944b 100644 --- a/CompileFlags.cmake +++ b/CompileFlags.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #----------------------------------------------------------------------------- # set some special flags for different compilers diff --git a/DartConfig.cmake b/DartConfig.cmake index 7d7c45b..467242d 100644 --- a/DartConfig.cmake +++ b/DartConfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set(CTEST_PROJECT_NAME "CMake") set(CTEST_NIGHTLY_START_TIME "21:00:00 EDT") diff --git a/Help/dev/documentation.rst b/Help/dev/documentation.rst index 855f818..ada6ab4 100644 --- a/Help/dev/documentation.rst +++ b/Help/dev/documentation.rst @@ -632,7 +632,7 @@ license notice: .. code-block:: cmake # Distributed under the OSI-approved BSD 3-Clause License. See accompanying - # file Copyright.txt or https://cmake.org/licensing for details. + # file LICENSE.rst or https://cmake.org/licensing for details. After this notice, add a *BLANK* line. Then, add documentation using a `Bracket Comment`_ of the form: @@ -658,7 +658,7 @@ For example, a ``FindXxx.cmake`` module may contain: .. code-block:: cmake # Distributed under the OSI-approved BSD 3-Clause License. See accompanying - # file Copyright.txt or https://cmake.org/licensing for details. + # file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindXxx diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst index f289480..2815e9c 100644 --- a/Help/manual/cmake-developer.7.rst +++ b/Help/manual/cmake-developer.7.rst @@ -341,7 +341,7 @@ reStructuredText-format documentation. For example: :: # Distributed under the OSI-approved BSD 3-Clause License. See accompanying - # file Copyright.txt or https://cmake.org/licensing for details. + # file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindFoo diff --git a/Modules/AddFileDependencies.cmake b/Modules/AddFileDependencies.cmake index 13b2600..13828f2 100644 --- a/Modules/AddFileDependencies.cmake +++ b/Modules/AddFileDependencies.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: AddFileDependencies diff --git a/Modules/AndroidTestUtilities.cmake b/Modules/AndroidTestUtilities.cmake index 319710b..e8c8ee6 100644 --- a/Modules/AndroidTestUtilities.cmake +++ b/Modules/AndroidTestUtilities.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[======================================================================[.rst: AndroidTestUtilities diff --git a/Modules/AndroidTestUtilities/PushToAndroidDevice.cmake b/Modules/AndroidTestUtilities/PushToAndroidDevice.cmake index 306181d..f6389d6 100644 --- a/Modules/AndroidTestUtilities/PushToAndroidDevice.cmake +++ b/Modules/AndroidTestUtilities/PushToAndroidDevice.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This function handles pushing all of the test files needed to the device. # It places the data files in the object store and makes links to them from diff --git a/Modules/BundleUtilities.cmake b/Modules/BundleUtilities.cmake index 7401d9c..1189e92 100644 --- a/Modules/BundleUtilities.cmake +++ b/Modules/BundleUtilities.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: BundleUtilities diff --git a/Modules/CMake.cmake b/Modules/CMake.cmake index caa5479..62d2b37 100644 --- a/Modules/CMake.cmake +++ b/Modules/CMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by cmake.cxx to compute the CMAKE_ROOT location. diff --git a/Modules/CMakeASM-ATTInformation.cmake b/Modules/CMakeASM-ATTInformation.cmake index d1970a2..eee7a7d 100644 --- a/Modules/CMakeASM-ATTInformation.cmake +++ b/Modules/CMakeASM-ATTInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for AT&T syntax assemblers, e.g. GNU as diff --git a/Modules/CMakeASMInformation.cmake b/Modules/CMakeASMInformation.cmake index 03256f8..7530070 100644 --- a/Modules/CMakeASMInformation.cmake +++ b/Modules/CMakeASMInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(UNIX) diff --git a/Modules/CMakeASM_MARMASMInformation.cmake b/Modules/CMakeASM_MARMASMInformation.cmake index 8101f9e..eed980c 100644 --- a/Modules/CMakeASM_MARMASMInformation.cmake +++ b/Modules/CMakeASM_MARMASMInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for the MS ARM assembler, marmasm and marmasm64 diff --git a/Modules/CMakeASM_MASMInformation.cmake b/Modules/CMakeASM_MASMInformation.cmake index 6ee159c..c3c9e7b 100644 --- a/Modules/CMakeASM_MASMInformation.cmake +++ b/Modules/CMakeASM_MASMInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for the MS assembler, masm and masm64 diff --git a/Modules/CMakeASM_NASMInformation.cmake b/Modules/CMakeASM_NASMInformation.cmake index 898b823..5ce4978 100644 --- a/Modules/CMakeASM_NASMInformation.cmake +++ b/Modules/CMakeASM_NASMInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for the nasm assembler diff --git a/Modules/CMakeAddFortranSubdirectory.cmake b/Modules/CMakeAddFortranSubdirectory.cmake index 356373f..dca6d23 100644 --- a/Modules/CMakeAddFortranSubdirectory.cmake +++ b/Modules/CMakeAddFortranSubdirectory.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeAddFortranSubdirectory diff --git a/Modules/CMakeBackwardCompatibilityC.cmake b/Modules/CMakeBackwardCompatibilityC.cmake index 13d75e9..2076cf9 100644 --- a/Modules/CMakeBackwardCompatibilityC.cmake +++ b/Modules/CMakeBackwardCompatibilityC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT CMAKE_SKIP_COMPATIBILITY_TESTS) diff --git a/Modules/CMakeBackwardCompatibilityCXX.cmake b/Modules/CMakeBackwardCompatibilityCXX.cmake index 815d483..e6b87f6 100644 --- a/Modules/CMakeBackwardCompatibilityCXX.cmake +++ b/Modules/CMakeBackwardCompatibilityCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeBackwardCompatibilityCXX diff --git a/Modules/CMakeBorlandFindMake.cmake b/Modules/CMakeBorlandFindMake.cmake index 18b9962..e0ac0d1 100644 --- a/Modules/CMakeBorlandFindMake.cmake +++ b/Modules/CMakeBorlandFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set (CMAKE_MAKE_PROGRAM "make" CACHE STRING diff --git a/Modules/CMakeCInformation.cmake b/Modules/CMakeCInformation.cmake index 977e51a..98b97de 100644 --- a/Modules/CMakeCInformation.cmake +++ b/Modules/CMakeCInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the C language in CMake. diff --git a/Modules/CMakeCSharpInformation.cmake b/Modules/CMakeCSharpInformation.cmake index f698bdf..6b7ab00 100644 --- a/Modules/CMakeCSharpInformation.cmake +++ b/Modules/CMakeCSharpInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the C# language in CMake. # It also loads the available platform file for the system-compiler diff --git a/Modules/CMakeCUDAInformation.cmake b/Modules/CMakeCUDAInformation.cmake index fa197b2..49a4270 100644 --- a/Modules/CMakeCUDAInformation.cmake +++ b/Modules/CMakeCUDAInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(UNIX) set(CMAKE_CUDA_OUTPUT_EXTENSION .o) diff --git a/Modules/CMakeCXXInformation.cmake b/Modules/CMakeCXXInformation.cmake index cc130ae..99f7201 100644 --- a/Modules/CMakeCXXInformation.cmake +++ b/Modules/CMakeCXXInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the C++ language in CMake. diff --git a/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake b/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake index c640221..ef9f138 100644 --- a/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake +++ b/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Do NOT include this module directly into any of your code. It is meant as diff --git a/Modules/CMakeCommonLanguageInclude.cmake b/Modules/CMakeCommonLanguageInclude.cmake index 4907a28..831dc4a 100644 --- a/Modules/CMakeCommonLanguageInclude.cmake +++ b/Modules/CMakeCommonLanguageInclude.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # this file has flags that are shared across languages and sets diff --git a/Modules/CMakeCompilerIdDetection.cmake b/Modules/CMakeCompilerIdDetection.cmake index 2817d37..dbbb65a 100644 --- a/Modules/CMakeCompilerIdDetection.cmake +++ b/Modules/CMakeCompilerIdDetection.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(_readFile file) diff --git a/Modules/CMakeDependentOption.cmake b/Modules/CMakeDependentOption.cmake index 74fa811..acafd56 100644 --- a/Modules/CMakeDependentOption.cmake +++ b/Modules/CMakeDependentOption.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeDependentOption diff --git a/Modules/CMakeDetermineASM-ATTCompiler.cmake b/Modules/CMakeDetermineASM-ATTCompiler.cmake index a2efb6a..9a3f7a0 100644 --- a/Modules/CMakeDetermineASM-ATTCompiler.cmake +++ b/Modules/CMakeDetermineASM-ATTCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for ASM using AT&T syntax, e.g. GNU as diff --git a/Modules/CMakeDetermineASMCompiler.cmake b/Modules/CMakeDetermineASMCompiler.cmake index 412fe36..9124285 100644 --- a/Modules/CMakeDetermineASMCompiler.cmake +++ b/Modules/CMakeDetermineASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for ASM programs diff --git a/Modules/CMakeDetermineASM_MARMASMCompiler.cmake b/Modules/CMakeDetermineASM_MARMASMCompiler.cmake index 26714dd..24fe11d 100644 --- a/Modules/CMakeDetermineASM_MARMASMCompiler.cmake +++ b/Modules/CMakeDetermineASM_MARMASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Find the MS ARM assembler (marmasm or marmasm64) diff --git a/Modules/CMakeDetermineASM_MASMCompiler.cmake b/Modules/CMakeDetermineASM_MASMCompiler.cmake index 80188fb..c90e181 100644 --- a/Modules/CMakeDetermineASM_MASMCompiler.cmake +++ b/Modules/CMakeDetermineASM_MASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Find the MS assembler (masm or masm64) diff --git a/Modules/CMakeDetermineASM_NASMCompiler.cmake b/Modules/CMakeDetermineASM_NASMCompiler.cmake index dd75310..f110efd 100644 --- a/Modules/CMakeDetermineASM_NASMCompiler.cmake +++ b/Modules/CMakeDetermineASM_NASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Find the nasm assembler. yasm (http://www.tortall.net/projects/yasm/) is nasm compatible diff --git a/Modules/CMakeDetermineCCompiler.cmake b/Modules/CMakeDetermineCCompiler.cmake index 73b6cee..214bca1 100644 --- a/Modules/CMakeDetermineCCompiler.cmake +++ b/Modules/CMakeDetermineCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for C programs diff --git a/Modules/CMakeDetermineCSharpCompiler.cmake b/Modules/CMakeDetermineCSharpCompiler.cmake index 6506894..0528252 100644 --- a/Modules/CMakeDetermineCSharpCompiler.cmake +++ b/Modules/CMakeDetermineCSharpCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT ${CMAKE_GENERATOR} MATCHES "Visual Studio") message(FATAL_ERROR diff --git a/Modules/CMakeDetermineCUDACompiler.cmake b/Modules/CMakeDetermineCUDACompiler.cmake index 70528da..698346f 100644 --- a/Modules/CMakeDetermineCUDACompiler.cmake +++ b/Modules/CMakeDetermineCUDACompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake) include(${CMAKE_ROOT}/Modules/CMakeParseImplicitLinkInfo.cmake) diff --git a/Modules/CMakeDetermineCXXCompiler.cmake b/Modules/CMakeDetermineCXXCompiler.cmake index 891ba6e..895f558 100644 --- a/Modules/CMakeDetermineCXXCompiler.cmake +++ b/Modules/CMakeDetermineCXXCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for C++ programs diff --git a/Modules/CMakeDetermineCompiler.cmake b/Modules/CMakeDetermineCompiler.cmake index 6036897..06e8bed 100644 --- a/Modules/CMakeDetermineCompiler.cmake +++ b/Modules/CMakeDetermineCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. macro(_cmake_find_compiler lang) diff --git a/Modules/CMakeDetermineCompilerABI.cmake b/Modules/CMakeDetermineCompilerABI.cmake index 806f0b7..f3e3d1f 100644 --- a/Modules/CMakeDetermineCompilerABI.cmake +++ b/Modules/CMakeDetermineCompilerABI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Function to compile a source file to identify the compiler ABI. diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake index dd1059c..f1a0f79 100644 --- a/Modules/CMakeDetermineCompilerId.cmake +++ b/Modules/CMakeDetermineCompilerId.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. macro(__determine_compiler_id_test testflags_var userflags_var) set(_CMAKE_${lang}_COMPILER_ID_LOG "") diff --git a/Modules/CMakeDetermineCompilerSupport.cmake b/Modules/CMakeDetermineCompilerSupport.cmake index d561e7b..c22bf07 100644 --- a/Modules/CMakeDetermineCompilerSupport.cmake +++ b/Modules/CMakeDetermineCompilerSupport.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(cmake_determine_compiler_support lang) diff --git a/Modules/CMakeDetermineFortranCompiler.cmake b/Modules/CMakeDetermineFortranCompiler.cmake index f051163..e0f9bef 100644 --- a/Modules/CMakeDetermineFortranCompiler.cmake +++ b/Modules/CMakeDetermineFortranCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for Fortran programs diff --git a/Modules/CMakeDetermineHIPCompiler.cmake b/Modules/CMakeDetermineHIPCompiler.cmake index d7a99b0..041302a 100644 --- a/Modules/CMakeDetermineHIPCompiler.cmake +++ b/Modules/CMakeDetermineHIPCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake) include(${CMAKE_ROOT}/Modules/CMakeParseImplicitLinkInfo.cmake) diff --git a/Modules/CMakeDetermineISPCCompiler.cmake b/Modules/CMakeDetermineISPCCompiler.cmake index ff2bf20..9b7866c 100644 --- a/Modules/CMakeDetermineISPCCompiler.cmake +++ b/Modules/CMakeDetermineISPCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for ISPC programs diff --git a/Modules/CMakeDetermineJavaCompiler.cmake b/Modules/CMakeDetermineJavaCompiler.cmake index db456c0..b20a255 100644 --- a/Modules/CMakeDetermineJavaCompiler.cmake +++ b/Modules/CMakeDetermineJavaCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for Java programs diff --git a/Modules/CMakeDetermineOBJCCompiler.cmake b/Modules/CMakeDetermineOBJCCompiler.cmake index 4b84c8a..280be74 100644 --- a/Modules/CMakeDetermineOBJCCompiler.cmake +++ b/Modules/CMakeDetermineOBJCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for Objective-C programs diff --git a/Modules/CMakeDetermineOBJCXXCompiler.cmake b/Modules/CMakeDetermineOBJCXXCompiler.cmake index 7403847..24f9175 100644 --- a/Modules/CMakeDetermineOBJCXXCompiler.cmake +++ b/Modules/CMakeDetermineOBJCXXCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for Objective-C++ programs diff --git a/Modules/CMakeDetermineRCCompiler.cmake b/Modules/CMakeDetermineRCCompiler.cmake index d22741b..354fef4 100644 --- a/Modules/CMakeDetermineRCCompiler.cmake +++ b/Modules/CMakeDetermineRCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # determine the compiler to use for RC programs diff --git a/Modules/CMakeDetermineSwiftCompiler.cmake b/Modules/CMakeDetermineSwiftCompiler.cmake index 7239424..a7dc150 100644 --- a/Modules/CMakeDetermineSwiftCompiler.cmake +++ b/Modules/CMakeDetermineSwiftCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake) diff --git a/Modules/CMakeDetermineSystem.cmake b/Modules/CMakeDetermineSystem.cmake index b330ed9..80db89c 100644 --- a/Modules/CMakeDetermineSystem.cmake +++ b/Modules/CMakeDetermineSystem.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is used by the Makefile generator to determine the following variables: diff --git a/Modules/CMakeDetermineVSServicePack.cmake b/Modules/CMakeDetermineVSServicePack.cmake index ed1d0c1..b2dfd1d 100644 --- a/Modules/CMakeDetermineVSServicePack.cmake +++ b/Modules/CMakeDetermineVSServicePack.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeDetermineVSServicePack diff --git a/Modules/CMakeExpandImportedTargets.cmake b/Modules/CMakeExpandImportedTargets.cmake index 07a9c6c..4fad7f6 100644 --- a/Modules/CMakeExpandImportedTargets.cmake +++ b/Modules/CMakeExpandImportedTargets.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeExpandImportedTargets diff --git a/Modules/CMakeExportBuildSettings.cmake b/Modules/CMakeExportBuildSettings.cmake index cafc830..af2d748 100644 --- a/Modules/CMakeExportBuildSettings.cmake +++ b/Modules/CMakeExportBuildSettings.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is purposely no longer documented. It does nothing useful. diff --git a/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake b/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake index 5d7d430..0b21e36 100644 --- a/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake +++ b/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included by CMakeFindEclipseCDT4.cmake and CMakeFindCodeBlocks.cmake diff --git a/Modules/CMakeFindBinUtils.cmake b/Modules/CMakeFindBinUtils.cmake index 8f59a18..9a441ad 100644 --- a/Modules/CMakeFindBinUtils.cmake +++ b/Modules/CMakeFindBinUtils.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # search for additional tools required for C/C++ (and other languages ?) diff --git a/Modules/CMakeFindCodeBlocks.cmake b/Modules/CMakeFindCodeBlocks.cmake index bf27ec1..fc769a1 100644 --- a/Modules/CMakeFindCodeBlocks.cmake +++ b/Modules/CMakeFindCodeBlocks.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included in CMakeSystemSpecificInformation.cmake if diff --git a/Modules/CMakeFindDependencyMacro.cmake b/Modules/CMakeFindDependencyMacro.cmake index aa9ef98..99624d2 100644 --- a/Modules/CMakeFindDependencyMacro.cmake +++ b/Modules/CMakeFindDependencyMacro.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeFindDependencyMacro diff --git a/Modules/CMakeFindEclipseCDT4.cmake b/Modules/CMakeFindEclipseCDT4.cmake index e563a12..b980fa4 100644 --- a/Modules/CMakeFindEclipseCDT4.cmake +++ b/Modules/CMakeFindEclipseCDT4.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included in CMakeSystemSpecificInformation.cmake if diff --git a/Modules/CMakeFindFrameworks.cmake b/Modules/CMakeFindFrameworks.cmake index 46010f5..87ad38b 100644 --- a/Modules/CMakeFindFrameworks.cmake +++ b/Modules/CMakeFindFrameworks.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeFindFrameworks diff --git a/Modules/CMakeFindJavaCommon.cmake b/Modules/CMakeFindJavaCommon.cmake index c6e3348..95ca9b5 100644 --- a/Modules/CMakeFindJavaCommon.cmake +++ b/Modules/CMakeFindJavaCommon.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Do not include this module directly from code outside CMake! diff --git a/Modules/CMakeFindKate.cmake b/Modules/CMakeFindKate.cmake index 521bc5c..a4bf2ed 100644 --- a/Modules/CMakeFindKate.cmake +++ b/Modules/CMakeFindKate.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included in CMakeSystemSpecificInformation.cmake if diff --git a/Modules/CMakeFindPackageMode.cmake b/Modules/CMakeFindPackageMode.cmake index a6bbcc4..eaf1574 100644 --- a/Modules/CMakeFindPackageMode.cmake +++ b/Modules/CMakeFindPackageMode.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeFindPackageMode diff --git a/Modules/CMakeFindSublimeText2.cmake b/Modules/CMakeFindSublimeText2.cmake index 7f67bf0..fc0ec31 100644 --- a/Modules/CMakeFindSublimeText2.cmake +++ b/Modules/CMakeFindSublimeText2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included in CMakeSystemSpecificInformation.cmake if diff --git a/Modules/CMakeFindWMake.cmake b/Modules/CMakeFindWMake.cmake index a20d069..0e7a264 100644 --- a/Modules/CMakeFindWMake.cmake +++ b/Modules/CMakeFindWMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set (CMAKE_MAKE_PROGRAM "wmake" CACHE STRING diff --git a/Modules/CMakeFindXCode.cmake b/Modules/CMakeFindXCode.cmake index 281af96..f2d11da 100644 --- a/Modules/CMakeFindXCode.cmake +++ b/Modules/CMakeFindXCode.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Empty placeholder for input dependencies in existing diff --git a/Modules/CMakeForceCompiler.cmake b/Modules/CMakeForceCompiler.cmake index 1f3e428..e85c3f9 100644 --- a/Modules/CMakeForceCompiler.cmake +++ b/Modules/CMakeForceCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeForceCompiler diff --git a/Modules/CMakeFortranInformation.cmake b/Modules/CMakeFortranInformation.cmake index a376e10..8d8ff20 100644 --- a/Modules/CMakeFortranInformation.cmake +++ b/Modules/CMakeFortranInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(CMakeLanguageInformation) diff --git a/Modules/CMakeGenericSystem.cmake b/Modules/CMakeGenericSystem.cmake index 88e3bfa..ac5da58 100644 --- a/Modules/CMakeGenericSystem.cmake +++ b/Modules/CMakeGenericSystem.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(CMakeInitializeConfigs) diff --git a/Modules/CMakeGraphVizOptions.cmake b/Modules/CMakeGraphVizOptions.cmake index 7086722..1d7dc0f 100644 --- a/Modules/CMakeGraphVizOptions.cmake +++ b/Modules/CMakeGraphVizOptions.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeGraphVizOptions diff --git a/Modules/CMakeHIPInformation.cmake b/Modules/CMakeHIPInformation.cmake index c013df8..f015cdf 100644 --- a/Modules/CMakeHIPInformation.cmake +++ b/Modules/CMakeHIPInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(UNIX) set(CMAKE_HIP_OUTPUT_EXTENSION .o) diff --git a/Modules/CMakeIOSInstallCombined.cmake b/Modules/CMakeIOSInstallCombined.cmake index 925e8a8..78d2e0e 100644 --- a/Modules/CMakeIOSInstallCombined.cmake +++ b/Modules/CMakeIOSInstallCombined.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Function to print messages of this module function(_ios_install_combined_message) diff --git a/Modules/CMakeISPCInformation.cmake b/Modules/CMakeISPCInformation.cmake index 4a4b72a..8f86ae1 100644 --- a/Modules/CMakeISPCInformation.cmake +++ b/Modules/CMakeISPCInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(UNIX) set(CMAKE_ISPC_OUTPUT_EXTENSION .o) diff --git a/Modules/CMakeImportBuildSettings.cmake b/Modules/CMakeImportBuildSettings.cmake index ec1effb..4dc16e1 100644 --- a/Modules/CMakeImportBuildSettings.cmake +++ b/Modules/CMakeImportBuildSettings.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is purposely no longer documented. It does nothing useful. diff --git a/Modules/CMakeInitializeConfigs.cmake b/Modules/CMakeInitializeConfigs.cmake index 9dfe040..609f79e 100644 --- a/Modules/CMakeInitializeConfigs.cmake +++ b/Modules/CMakeInitializeConfigs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) diff --git a/Modules/CMakeJOMFindMake.cmake b/Modules/CMakeJOMFindMake.cmake index f56a588..3a98be4 100644 --- a/Modules/CMakeJOMFindMake.cmake +++ b/Modules/CMakeJOMFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set (CMAKE_MAKE_PROGRAM "jom" CACHE STRING diff --git a/Modules/CMakeJavaInformation.cmake b/Modules/CMakeJavaInformation.cmake index 0ca8395..a31955b 100644 --- a/Modules/CMakeJavaInformation.cmake +++ b/Modules/CMakeJavaInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This should be included before the _INIT variables are diff --git a/Modules/CMakeLanguageInformation.cmake b/Modules/CMakeLanguageInformation.cmake index 674ab86..84a513b 100644 --- a/Modules/CMakeLanguageInformation.cmake +++ b/Modules/CMakeLanguageInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file contains common code blocks used by all the language information diff --git a/Modules/CMakeMSYSFindMake.cmake b/Modules/CMakeMSYSFindMake.cmake index 96fdb37..a186c5b 100644 --- a/Modules/CMakeMSYSFindMake.cmake +++ b/Modules/CMakeMSYSFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. find_program(CMAKE_MAKE_PROGRAM make diff --git a/Modules/CMakeMinGWFindMake.cmake b/Modules/CMakeMinGWFindMake.cmake index f026e9a..cb2edad 100644 --- a/Modules/CMakeMinGWFindMake.cmake +++ b/Modules/CMakeMinGWFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. find_program(CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS diff --git a/Modules/CMakeNMakeFindMake.cmake b/Modules/CMakeNMakeFindMake.cmake index 0335744..38051a7 100644 --- a/Modules/CMakeNMakeFindMake.cmake +++ b/Modules/CMakeNMakeFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set (CMAKE_MAKE_PROGRAM "nmake" CACHE STRING diff --git a/Modules/CMakeNinjaFindMake.cmake b/Modules/CMakeNinjaFindMake.cmake index 32f78da..0dfd7e4 100644 --- a/Modules/CMakeNinjaFindMake.cmake +++ b/Modules/CMakeNinjaFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. find_program(CMAKE_MAKE_PROGRAM diff --git a/Modules/CMakeOBJCInformation.cmake b/Modules/CMakeOBJCInformation.cmake index 56e8239..bac6673 100644 --- a/Modules/CMakeOBJCInformation.cmake +++ b/Modules/CMakeOBJCInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the Objective-C language in CMake. diff --git a/Modules/CMakeOBJCXXInformation.cmake b/Modules/CMakeOBJCXXInformation.cmake index a242dab..8a7a42c 100644 --- a/Modules/CMakeOBJCXXInformation.cmake +++ b/Modules/CMakeOBJCXXInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the Objective-C++ language in CMake. diff --git a/Modules/CMakePackageConfigHelpers.cmake b/Modules/CMakePackageConfigHelpers.cmake index 7fcd496..ba03080 100644 --- a/Modules/CMakePackageConfigHelpers.cmake +++ b/Modules/CMakePackageConfigHelpers.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakePackageConfigHelpers diff --git a/Modules/CMakeParseArguments.cmake b/Modules/CMakeParseArguments.cmake index de9a9eb..0d9c373 100644 --- a/Modules/CMakeParseArguments.cmake +++ b/Modules/CMakeParseArguments.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeParseArguments diff --git a/Modules/CMakeParseImplicitIncludeInfo.cmake b/Modules/CMakeParseImplicitIncludeInfo.cmake index 1ebd887..a6d1335 100644 --- a/Modules/CMakeParseImplicitIncludeInfo.cmake +++ b/Modules/CMakeParseImplicitIncludeInfo.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This is used internally by CMake and should not be included by user code. diff --git a/Modules/CMakeParseImplicitLinkInfo.cmake b/Modules/CMakeParseImplicitLinkInfo.cmake index 1b4a01f..d9f6bad 100644 --- a/Modules/CMakeParseImplicitLinkInfo.cmake +++ b/Modules/CMakeParseImplicitLinkInfo.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Function to parse implicit linker options. # diff --git a/Modules/CMakeParseLibraryArchitecture.cmake b/Modules/CMakeParseLibraryArchitecture.cmake index 41ae2fb..7a8557e 100644 --- a/Modules/CMakeParseLibraryArchitecture.cmake +++ b/Modules/CMakeParseLibraryArchitecture.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Function parse implicit linker options. # This is used internally by CMake and should not be included by user diff --git a/Modules/CMakePrintHelpers.cmake b/Modules/CMakePrintHelpers.cmake index aabf0ff..98555aa 100644 --- a/Modules/CMakePrintHelpers.cmake +++ b/Modules/CMakePrintHelpers.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakePrintHelpers diff --git a/Modules/CMakePrintSystemInformation.cmake b/Modules/CMakePrintSystemInformation.cmake index d44e933..45ad38e 100644 --- a/Modules/CMakePrintSystemInformation.cmake +++ b/Modules/CMakePrintSystemInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakePrintSystemInformation diff --git a/Modules/CMakePushCheckState.cmake b/Modules/CMakePushCheckState.cmake index 96a2edc..a179670 100644 --- a/Modules/CMakePushCheckState.cmake +++ b/Modules/CMakePushCheckState.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) diff --git a/Modules/CMakeRCInformation.cmake b/Modules/CMakeRCInformation.cmake index d716469..cd991a0 100644 --- a/Modules/CMakeRCInformation.cmake +++ b/Modules/CMakeRCInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the Windows Resource Compiler. diff --git a/Modules/CMakeSwiftCompiler.cmake.in b/Modules/CMakeSwiftCompiler.cmake.in index b385190..9210880 100644 --- a/Modules/CMakeSwiftCompiler.cmake.in +++ b/Modules/CMakeSwiftCompiler.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set(CMAKE_Swift_COMPILER "@CMAKE_Swift_COMPILER@") set(CMAKE_Swift_COMPILER_ID "@CMAKE_Swift_COMPILER_ID@") diff --git a/Modules/CMakeSwiftInformation.cmake b/Modules/CMakeSwiftInformation.cmake index 904a528..63ffcc3 100644 --- a/Modules/CMakeSwiftInformation.cmake +++ b/Modules/CMakeSwiftInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(UNIX) set(CMAKE_Swift_OUTPUT_EXTENSION .o) diff --git a/Modules/CMakeSystemSpecificInformation.cmake b/Modules/CMakeSystemSpecificInformation.cmake index 70bcf5c..bb1a4bd 100644 --- a/Modules/CMakeSystemSpecificInformation.cmake +++ b/Modules/CMakeSystemSpecificInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included by cmGlobalGenerator::EnableLanguage. diff --git a/Modules/CMakeSystemSpecificInitialize.cmake b/Modules/CMakeSystemSpecificInitialize.cmake index 3131877..13f1eff 100644 --- a/Modules/CMakeSystemSpecificInitialize.cmake +++ b/Modules/CMakeSystemSpecificInitialize.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is included by cmGlobalGenerator::EnableLanguage. diff --git a/Modules/CMakeTestASM-ATTCompiler.cmake b/Modules/CMakeTestASM-ATTCompiler.cmake index df735c4..53f5034 100644 --- a/Modules/CMakeTestASM-ATTCompiler.cmake +++ b/Modules/CMakeTestASM-ATTCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestASMCompiler.cmake b/Modules/CMakeTestASMCompiler.cmake index 7f0b9a7..329cb25 100644 --- a/Modules/CMakeTestASMCompiler.cmake +++ b/Modules/CMakeTestASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestASM_MARMASMCompiler.cmake b/Modules/CMakeTestASM_MARMASMCompiler.cmake index a6de04c..8703172 100644 --- a/Modules/CMakeTestASM_MARMASMCompiler.cmake +++ b/Modules/CMakeTestASM_MARMASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestASM_MASMCompiler.cmake b/Modules/CMakeTestASM_MASMCompiler.cmake index c1308ff..c2ee7d5 100644 --- a/Modules/CMakeTestASM_MASMCompiler.cmake +++ b/Modules/CMakeTestASM_MASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestASM_NASMCompiler.cmake b/Modules/CMakeTestASM_NASMCompiler.cmake index a9ee39d..20f161d 100644 --- a/Modules/CMakeTestASM_NASMCompiler.cmake +++ b/Modules/CMakeTestASM_NASMCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestCCompiler.cmake b/Modules/CMakeTestCCompiler.cmake index 8ebe570..d32fb6c 100644 --- a/Modules/CMakeTestCCompiler.cmake +++ b/Modules/CMakeTestCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_C_COMPILER_FORCED) diff --git a/Modules/CMakeTestCSharpCompiler.cmake b/Modules/CMakeTestCSharpCompiler.cmake index 9f4b99f..d34ae92 100644 --- a/Modules/CMakeTestCSharpCompiler.cmake +++ b/Modules/CMakeTestCSharpCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_CSharp_COMPILER_FORCED) # The compiler configuration was forced by the user. diff --git a/Modules/CMakeTestCUDACompiler.cmake b/Modules/CMakeTestCUDACompiler.cmake index ef97f55..fbeadf7 100644 --- a/Modules/CMakeTestCUDACompiler.cmake +++ b/Modules/CMakeTestCUDACompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_CUDA_COMPILER_FORCED) # The compiler configuration was forced by the user. diff --git a/Modules/CMakeTestCXXCompiler.cmake b/Modules/CMakeTestCXXCompiler.cmake index 6f5b36c..5c35426 100644 --- a/Modules/CMakeTestCXXCompiler.cmake +++ b/Modules/CMakeTestCXXCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_CXX_COMPILER_FORCED) diff --git a/Modules/CMakeTestCompilerCommon.cmake b/Modules/CMakeTestCompilerCommon.cmake index da7c007..1b4dd6d 100644 --- a/Modules/CMakeTestCompilerCommon.cmake +++ b/Modules/CMakeTestCompilerCommon.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(PrintTestCompilerStatus LANG) diff --git a/Modules/CMakeTestFortranCompiler.cmake b/Modules/CMakeTestFortranCompiler.cmake index 1baa18d..bf4100e 100644 --- a/Modules/CMakeTestFortranCompiler.cmake +++ b/Modules/CMakeTestFortranCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_Fortran_COMPILER_FORCED) diff --git a/Modules/CMakeTestHIPCompiler.cmake b/Modules/CMakeTestHIPCompiler.cmake index 5b49c0d..60b2121 100644 --- a/Modules/CMakeTestHIPCompiler.cmake +++ b/Modules/CMakeTestHIPCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_HIP_COMPILER_FORCED) diff --git a/Modules/CMakeTestISPCCompiler.cmake b/Modules/CMakeTestISPCCompiler.cmake index 6b16393..c2e157c 100644 --- a/Modules/CMakeTestISPCCompiler.cmake +++ b/Modules/CMakeTestISPCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. diff --git a/Modules/CMakeTestJavaCompiler.cmake b/Modules/CMakeTestJavaCompiler.cmake index 3c33573..ece8dd5 100644 --- a/Modules/CMakeTestJavaCompiler.cmake +++ b/Modules/CMakeTestJavaCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestOBJCCompiler.cmake b/Modules/CMakeTestOBJCCompiler.cmake index bcb3e1e..8003415 100644 --- a/Modules/CMakeTestOBJCCompiler.cmake +++ b/Modules/CMakeTestOBJCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_OBJC_COMPILER_FORCED) diff --git a/Modules/CMakeTestOBJCXXCompiler.cmake b/Modules/CMakeTestOBJCXXCompiler.cmake index 68b3871..1b4bf60 100644 --- a/Modules/CMakeTestOBJCXXCompiler.cmake +++ b/Modules/CMakeTestOBJCXXCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_OBJCXX_COMPILER_FORCED) diff --git a/Modules/CMakeTestRCCompiler.cmake b/Modules/CMakeTestRCCompiler.cmake index 3123a6c..8089270 100644 --- a/Modules/CMakeTestRCCompiler.cmake +++ b/Modules/CMakeTestRCCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file is used by EnableLanguage in cmGlobalGenerator to diff --git a/Modules/CMakeTestSwiftCompiler.cmake b/Modules/CMakeTestSwiftCompiler.cmake index d89e606..0abaabe 100644 --- a/Modules/CMakeTestSwiftCompiler.cmake +++ b/Modules/CMakeTestSwiftCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_Swift_COMPILER_FORCED) # The compiler configuration was forced by the user. diff --git a/Modules/CMakeUnixFindMake.cmake b/Modules/CMakeUnixFindMake.cmake index 58dedee..854e993 100644 --- a/Modules/CMakeUnixFindMake.cmake +++ b/Modules/CMakeUnixFindMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. find_program(CMAKE_MAKE_PROGRAM NAMES gmake make smake) diff --git a/Modules/CMakeVerifyManifest.cmake b/Modules/CMakeVerifyManifest.cmake index 71b7ef4..d98a49e 100644 --- a/Modules/CMakeVerifyManifest.cmake +++ b/Modules/CMakeVerifyManifest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CMakeVerifyManifest diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake index 46b330b..026b8c0 100644 --- a/Modules/CPack.cmake +++ b/Modules/CPack.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CPack diff --git a/Modules/CPackComponent.cmake b/Modules/CPackComponent.cmake index a814993..3197fc3 100644 --- a/Modules/CPackComponent.cmake +++ b/Modules/CPackComponent.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CPackComponent diff --git a/Modules/CPackIFW.cmake b/Modules/CPackIFW.cmake index 2166fdf..2a2f478 100644 --- a/Modules/CPackIFW.cmake +++ b/Modules/CPackIFW.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CPackIFW diff --git a/Modules/CPackIFWConfigureFile.cmake b/Modules/CPackIFWConfigureFile.cmake index 6999363..6759c9c 100644 --- a/Modules/CPackIFWConfigureFile.cmake +++ b/Modules/CPackIFWConfigureFile.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CPackIFWConfigureFile diff --git a/Modules/CSharpUtilities.cmake b/Modules/CSharpUtilities.cmake index d0897d7..cf6300f 100644 --- a/Modules/CSharpUtilities.cmake +++ b/Modules/CSharpUtilities.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CSharpUtilities diff --git a/Modules/CTest.cmake b/Modules/CTest.cmake index c803d98..06d11bb 100644 --- a/Modules/CTest.cmake +++ b/Modules/CTest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CTest diff --git a/Modules/CTestCoverageCollectGCOV.cmake b/Modules/CTestCoverageCollectGCOV.cmake index d906489..0b4f374 100644 --- a/Modules/CTestCoverageCollectGCOV.cmake +++ b/Modules/CTestCoverageCollectGCOV.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CTestCoverageCollectGCOV diff --git a/Modules/CTestScriptMode.cmake b/Modules/CTestScriptMode.cmake index b4bb535..d5dbddb 100644 --- a/Modules/CTestScriptMode.cmake +++ b/Modules/CTestScriptMode.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CTestScriptMode diff --git a/Modules/CTestTargets.cmake b/Modules/CTestTargets.cmake index 5e8a07d..0a08b71 100644 --- a/Modules/CTestTargets.cmake +++ b/Modules/CTestTargets.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT RUN_FROM_CTEST_OR_DART) diff --git a/Modules/CTestUseLaunchers.cmake b/Modules/CTestUseLaunchers.cmake index eeea992..5578c3d 100644 --- a/Modules/CTestUseLaunchers.cmake +++ b/Modules/CTestUseLaunchers.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CTestUseLaunchers diff --git a/Modules/CheckCCompilerFlag.cmake b/Modules/CheckCCompilerFlag.cmake index 7e58012..4d09a7f 100644 --- a/Modules/CheckCCompilerFlag.cmake +++ b/Modules/CheckCCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCCompilerFlag diff --git a/Modules/CheckCSourceCompiles.cmake b/Modules/CheckCSourceCompiles.cmake index 74c54fa..8b12343 100644 --- a/Modules/CheckCSourceCompiles.cmake +++ b/Modules/CheckCSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCSourceCompiles diff --git a/Modules/CheckCSourceRuns.cmake b/Modules/CheckCSourceRuns.cmake index 5edfe37..8fcf22b 100644 --- a/Modules/CheckCSourceRuns.cmake +++ b/Modules/CheckCSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCSourceRuns diff --git a/Modules/CheckCXXCompilerFlag.cmake b/Modules/CheckCXXCompilerFlag.cmake index 41af210..f1933f3 100644 --- a/Modules/CheckCXXCompilerFlag.cmake +++ b/Modules/CheckCXXCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCXXCompilerFlag diff --git a/Modules/CheckCXXSourceCompiles.cmake b/Modules/CheckCXXSourceCompiles.cmake index 90c3e6a..c0402e9 100644 --- a/Modules/CheckCXXSourceCompiles.cmake +++ b/Modules/CheckCXXSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCXXSourceCompiles diff --git a/Modules/CheckCXXSourceRuns.cmake b/Modules/CheckCXXSourceRuns.cmake index 4565a68..b131a6f 100644 --- a/Modules/CheckCXXSourceRuns.cmake +++ b/Modules/CheckCXXSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCXXSourceRuns diff --git a/Modules/CheckCXXSymbolExists.cmake b/Modules/CheckCXXSymbolExists.cmake index bcd514f..ada708a 100644 --- a/Modules/CheckCXXSymbolExists.cmake +++ b/Modules/CheckCXXSymbolExists.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCXXSymbolExists diff --git a/Modules/CheckCompilerFlag.cmake b/Modules/CheckCompilerFlag.cmake index d505142..2854fa8 100644 --- a/Modules/CheckCompilerFlag.cmake +++ b/Modules/CheckCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckCompilerFlag diff --git a/Modules/CheckFortranCompilerFlag.cmake b/Modules/CheckFortranCompilerFlag.cmake index eee7deb..c04f26c 100644 --- a/Modules/CheckFortranCompilerFlag.cmake +++ b/Modules/CheckFortranCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckFortranCompilerFlag diff --git a/Modules/CheckFortranFunctionExists.cmake b/Modules/CheckFortranFunctionExists.cmake index f46c13d..1c73604 100644 --- a/Modules/CheckFortranFunctionExists.cmake +++ b/Modules/CheckFortranFunctionExists.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckFortranFunctionExists diff --git a/Modules/CheckFortranSourceCompiles.cmake b/Modules/CheckFortranSourceCompiles.cmake index 68e289c..39176e2 100644 --- a/Modules/CheckFortranSourceCompiles.cmake +++ b/Modules/CheckFortranSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckFortranSourceCompiles diff --git a/Modules/CheckFortranSourceRuns.cmake b/Modules/CheckFortranSourceRuns.cmake index 5464b7c..62c6ac5 100644 --- a/Modules/CheckFortranSourceRuns.cmake +++ b/Modules/CheckFortranSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckFortranSourceRuns diff --git a/Modules/CheckFunctionExists.cmake b/Modules/CheckFunctionExists.cmake index 7111509..4c73ea6 100644 --- a/Modules/CheckFunctionExists.cmake +++ b/Modules/CheckFunctionExists.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckFunctionExists diff --git a/Modules/CheckIPOSupported.cmake b/Modules/CheckIPOSupported.cmake index 4d9f21f..9c4f61e 100644 --- a/Modules/CheckIPOSupported.cmake +++ b/Modules/CheckIPOSupported.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckIPOSupported diff --git a/Modules/CheckIncludeFile.cmake b/Modules/CheckIncludeFile.cmake index af1734c..f070ba5 100644 --- a/Modules/CheckIncludeFile.cmake +++ b/Modules/CheckIncludeFile.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckIncludeFile diff --git a/Modules/CheckIncludeFileCXX.cmake b/Modules/CheckIncludeFileCXX.cmake index 900d137..ec02b36 100644 --- a/Modules/CheckIncludeFileCXX.cmake +++ b/Modules/CheckIncludeFileCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckIncludeFileCXX diff --git a/Modules/CheckIncludeFiles.cmake b/Modules/CheckIncludeFiles.cmake index b537ffb..6dfb41d 100644 --- a/Modules/CheckIncludeFiles.cmake +++ b/Modules/CheckIncludeFiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckIncludeFiles diff --git a/Modules/CheckLanguage.cmake b/Modules/CheckLanguage.cmake index 35ad036..5ca5f68 100644 --- a/Modules/CheckLanguage.cmake +++ b/Modules/CheckLanguage.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckLanguage diff --git a/Modules/CheckLibraryExists.cmake b/Modules/CheckLibraryExists.cmake index 413fe73..e739955 100644 --- a/Modules/CheckLibraryExists.cmake +++ b/Modules/CheckLibraryExists.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckLibraryExists diff --git a/Modules/CheckLinkerFlag.cmake b/Modules/CheckLinkerFlag.cmake index 8319216..ca37ab5 100644 --- a/Modules/CheckLinkerFlag.cmake +++ b/Modules/CheckLinkerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckLinkerFlag diff --git a/Modules/CheckOBJCCompilerFlag.cmake b/Modules/CheckOBJCCompilerFlag.cmake index 183c7ec..9d00d04 100644 --- a/Modules/CheckOBJCCompilerFlag.cmake +++ b/Modules/CheckOBJCCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckOBJCCompilerFlag diff --git a/Modules/CheckOBJCSourceCompiles.cmake b/Modules/CheckOBJCSourceCompiles.cmake index 11d8ea9..bea3de9 100644 --- a/Modules/CheckOBJCSourceCompiles.cmake +++ b/Modules/CheckOBJCSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckOBJCSourceCompiles diff --git a/Modules/CheckOBJCSourceRuns.cmake b/Modules/CheckOBJCSourceRuns.cmake index ac661f5..1c33837 100644 --- a/Modules/CheckOBJCSourceRuns.cmake +++ b/Modules/CheckOBJCSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckOBJCSourceRuns diff --git a/Modules/CheckOBJCXXCompilerFlag.cmake b/Modules/CheckOBJCXXCompilerFlag.cmake index e185a31..a853475 100644 --- a/Modules/CheckOBJCXXCompilerFlag.cmake +++ b/Modules/CheckOBJCXXCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckOBJCXXCompilerFlag diff --git a/Modules/CheckOBJCXXSourceCompiles.cmake b/Modules/CheckOBJCXXSourceCompiles.cmake index 35024d7..dd1a209 100644 --- a/Modules/CheckOBJCXXSourceCompiles.cmake +++ b/Modules/CheckOBJCXXSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckOBJCXXSourceCompiles diff --git a/Modules/CheckOBJCXXSourceRuns.cmake b/Modules/CheckOBJCXXSourceRuns.cmake index 8eac3ea..93ac155 100644 --- a/Modules/CheckOBJCXXSourceRuns.cmake +++ b/Modules/CheckOBJCXXSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckOBJCXXSourceRuns diff --git a/Modules/CheckPIESupported.cmake b/Modules/CheckPIESupported.cmake index 4152c1b..9922aec 100644 --- a/Modules/CheckPIESupported.cmake +++ b/Modules/CheckPIESupported.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckPIESupported diff --git a/Modules/CheckPrototypeDefinition.cmake b/Modules/CheckPrototypeDefinition.cmake index 6d3b9b8..8854613 100644 --- a/Modules/CheckPrototypeDefinition.cmake +++ b/Modules/CheckPrototypeDefinition.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckPrototypeDefinition diff --git a/Modules/CheckSizeOf.cmake b/Modules/CheckSizeOf.cmake index bd439e1..f8b9bdb 100644 --- a/Modules/CheckSizeOf.cmake +++ b/Modules/CheckSizeOf.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. message(SEND_ERROR diff --git a/Modules/CheckSourceCompiles.cmake b/Modules/CheckSourceCompiles.cmake index 2ce6e85..97e3252 100644 --- a/Modules/CheckSourceCompiles.cmake +++ b/Modules/CheckSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: diff --git a/Modules/CheckSourceRuns.cmake b/Modules/CheckSourceRuns.cmake index 52e7c7b..7a18a4a 100644 --- a/Modules/CheckSourceRuns.cmake +++ b/Modules/CheckSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: diff --git a/Modules/CheckStructHasMember.cmake b/Modules/CheckStructHasMember.cmake index cb12994..f1d39bd 100644 --- a/Modules/CheckStructHasMember.cmake +++ b/Modules/CheckStructHasMember.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckStructHasMember diff --git a/Modules/CheckSymbolExists.cmake b/Modules/CheckSymbolExists.cmake index 7b62d6e..6d9301c 100644 --- a/Modules/CheckSymbolExists.cmake +++ b/Modules/CheckSymbolExists.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckSymbolExists diff --git a/Modules/CheckTypeSize.cmake b/Modules/CheckTypeSize.cmake index cd4bc50..c733aae 100644 --- a/Modules/CheckTypeSize.cmake +++ b/Modules/CheckTypeSize.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckTypeSize diff --git a/Modules/CheckVariableExists.cmake b/Modules/CheckVariableExists.cmake index f250532..25d871e 100644 --- a/Modules/CheckVariableExists.cmake +++ b/Modules/CheckVariableExists.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: CheckVariableExists diff --git a/Modules/Compiler/CMakeCommonCompilerMacros.cmake b/Modules/Compiler/CMakeCommonCompilerMacros.cmake index ffd02ec..067aa6f 100644 --- a/Modules/Compiler/CMakeCommonCompilerMacros.cmake +++ b/Modules/Compiler/CMakeCommonCompilerMacros.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages and compilers; use include guard if (__COMPILER_CMAKE_COMMON_COMPILER_MACROS) diff --git a/Modules/Compiler/Clang.cmake b/Modules/Compiler/Clang.cmake index f834f7a..06351e6 100644 --- a/Modules/Compiler/Clang.cmake +++ b/Modules/Compiler/Clang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/Cray-C.cmake b/Modules/Compiler/Cray-C.cmake index 51f8cc4..7d79fb3 100644 --- a/Modules/Compiler/Cray-C.cmake +++ b/Modules/Compiler/Cray-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/Cray) __compiler_cray(C) diff --git a/Modules/Compiler/Cray-CXX.cmake b/Modules/Compiler/Cray-CXX.cmake index 9a40b98..713dcae 100644 --- a/Modules/Compiler/Cray-CXX.cmake +++ b/Modules/Compiler/Cray-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/Cray) __compiler_cray(CXX) diff --git a/Modules/Compiler/Cray-Fortran.cmake b/Modules/Compiler/Cray-Fortran.cmake index 0d5e1c7..3fdc906 100644 --- a/Modules/Compiler/Cray-Fortran.cmake +++ b/Modules/Compiler/Cray-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/Cray) __compiler_cray(Fortran) diff --git a/Modules/Compiler/Cray.cmake b/Modules/Compiler/Cray.cmake index 8d56bbb..c693589 100644 --- a/Modules/Compiler/Cray.cmake +++ b/Modules/Compiler/Cray.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__COMPILER_CRAY) diff --git a/Modules/Compiler/CrayClang-C.cmake b/Modules/Compiler/CrayClang-C.cmake index 96e46be..fa2c197 100644 --- a/Modules/Compiler/CrayClang-C.cmake +++ b/Modules/Compiler/CrayClang-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/CrayClang) __compiler_cray_clang(C) diff --git a/Modules/Compiler/CrayClang-CXX.cmake b/Modules/Compiler/CrayClang-CXX.cmake index a61edfa..015f7ce 100644 --- a/Modules/Compiler/CrayClang-CXX.cmake +++ b/Modules/Compiler/CrayClang-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/CrayClang) __compiler_cray_clang(CXX) diff --git a/Modules/Compiler/CrayClang.cmake b/Modules/Compiler/CrayClang.cmake index d2db9dd..eced82b 100644 --- a/Modules/Compiler/CrayClang.cmake +++ b/Modules/Compiler/CrayClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__COMPILER_CRAYCLANG) diff --git a/Modules/Compiler/Fujitsu-C.cmake b/Modules/Compiler/Fujitsu-C.cmake index 0ffa82d..ddbb769 100644 --- a/Modules/Compiler/Fujitsu-C.cmake +++ b/Modules/Compiler/Fujitsu-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/Fujitsu) __compiler_fujitsu(C) diff --git a/Modules/Compiler/Fujitsu-CXX.cmake b/Modules/Compiler/Fujitsu-CXX.cmake index 56f16c1..3bb7629 100644 --- a/Modules/Compiler/Fujitsu-CXX.cmake +++ b/Modules/Compiler/Fujitsu-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/Fujitsu) __compiler_fujitsu(CXX) diff --git a/Modules/Compiler/Fujitsu.cmake b/Modules/Compiler/Fujitsu.cmake index a77b5f0..554061d 100644 --- a/Modules/Compiler/Fujitsu.cmake +++ b/Modules/Compiler/Fujitsu.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__COMPILER_FUJITSU) diff --git a/Modules/Compiler/FujitsuClang.cmake b/Modules/Compiler/FujitsuClang.cmake index a848248..029b5e5 100644 --- a/Modules/Compiler/FujitsuClang.cmake +++ b/Modules/Compiler/FujitsuClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/GNU.cmake b/Modules/Compiler/GNU.cmake index e2e6549..5b6ba06 100644 --- a/Modules/Compiler/GNU.cmake +++ b/Modules/Compiler/GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/IBMClang.cmake b/Modules/Compiler/IBMClang.cmake index 5d8d19a..79bd8c6 100644 --- a/Modules/Compiler/IBMClang.cmake +++ b/Modules/Compiler/IBMClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__COMPILER_IBMClang) diff --git a/Modules/Compiler/Intel.cmake b/Modules/Compiler/Intel.cmake index fd582fb..4d4d520 100644 --- a/Modules/Compiler/Intel.cmake +++ b/Modules/Compiler/Intel.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/IntelLLVM.cmake b/Modules/Compiler/IntelLLVM.cmake index b1dda9a..a82795c 100644 --- a/Modules/Compiler/IntelLLVM.cmake +++ b/Modules/Compiler/IntelLLVM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/LCC.cmake b/Modules/Compiler/LCC.cmake index 24396ce..f3301f7 100644 --- a/Modules/Compiler/LCC.cmake +++ b/Modules/Compiler/LCC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/MSVC-C.cmake b/Modules/Compiler/MSVC-C.cmake index d7fbf9f..7de6039 100644 --- a/Modules/Compiler/MSVC-C.cmake +++ b/Modules/Compiler/MSVC-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/MSVC) __compiler_msvc(C) diff --git a/Modules/Compiler/MSVC-CXX.cmake b/Modules/Compiler/MSVC-CXX.cmake index 2243a14..55a99bc 100644 --- a/Modules/Compiler/MSVC-CXX.cmake +++ b/Modules/Compiler/MSVC-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/MSVC) __compiler_msvc(CXX) diff --git a/Modules/Compiler/MSVC.cmake b/Modules/Compiler/MSVC.cmake index 6cd2dc9..40517b9 100644 --- a/Modules/Compiler/MSVC.cmake +++ b/Modules/Compiler/MSVC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__COMPILER_MSVC) diff --git a/Modules/Compiler/NVHPC.cmake b/Modules/Compiler/NVHPC.cmake index 32ba5ac..ff8808a 100644 --- a/Modules/Compiler/NVHPC.cmake +++ b/Modules/Compiler/NVHPC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/OpenWatcom.cmake b/Modules/Compiler/OpenWatcom.cmake index 1cc0068..e048bc8 100644 --- a/Modules/Compiler/OpenWatcom.cmake +++ b/Modules/Compiler/OpenWatcom.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. include_guard() diff --git a/Modules/Compiler/PGI.cmake b/Modules/Compiler/PGI.cmake index a3f8706..4a29a43 100644 --- a/Modules/Compiler/PGI.cmake +++ b/Modules/Compiler/PGI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/PathScale.cmake b/Modules/Compiler/PathScale.cmake index d1a6de2..351f6c6 100644 --- a/Modules/Compiler/PathScale.cmake +++ b/Modules/Compiler/PathScale.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/QCC.cmake b/Modules/Compiler/QCC.cmake index b5dca3e..d16b2d4 100644 --- a/Modules/Compiler/QCC.cmake +++ b/Modules/Compiler/QCC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/GNU) diff --git a/Modules/Compiler/SCO.cmake b/Modules/Compiler/SCO.cmake index 7143d5a..aefe5a0 100644 --- a/Modules/Compiler/SCO.cmake +++ b/Modules/Compiler/SCO.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/SunPro-C.cmake b/Modules/Compiler/SunPro-C.cmake index 35dbdcd..d76b854 100644 --- a/Modules/Compiler/SunPro-C.cmake +++ b/Modules/Compiler/SunPro-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/SunPro) __compiler_sunpro(C) diff --git a/Modules/Compiler/SunPro-CXX.cmake b/Modules/Compiler/SunPro-CXX.cmake index 33ce9fc..6dd363b 100644 --- a/Modules/Compiler/SunPro-CXX.cmake +++ b/Modules/Compiler/SunPro-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/SunPro) __compiler_sunpro(CXX) diff --git a/Modules/Compiler/SunPro.cmake b/Modules/Compiler/SunPro.cmake index 649c0de..88eca39 100644 --- a/Modules/Compiler/SunPro.cmake +++ b/Modules/Compiler/SunPro.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__COMPILER_SUNPRO) diff --git a/Modules/Compiler/TI.cmake b/Modules/Compiler/TI.cmake index 9604738..9462dcd 100644 --- a/Modules/Compiler/TI.cmake +++ b/Modules/Compiler/TI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/Tasking-CXX.cmake b/Modules/Compiler/Tasking-CXX.cmake index 53ae3ed..3570bb0 100644 --- a/Modules/Compiler/Tasking-CXX.cmake +++ b/Modules/Compiler/Tasking-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Compiler/Tasking) __compiler_tasking(CXX) diff --git a/Modules/Compiler/Tasking-DetermineCompiler.cmake b/Modules/Compiler/Tasking-DetermineCompiler.cmake index a40be19..f12487c 100644 --- a/Modules/Compiler/Tasking-DetermineCompiler.cmake +++ b/Modules/Compiler/Tasking-DetermineCompiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set(_compiler_id_pp_test "defined(__TASKING__)") set(_compiler_id_version_compute " diff --git a/Modules/Compiler/Tasking-FindBinUtils.cmake b/Modules/Compiler/Tasking-FindBinUtils.cmake index eab31d7..d81a741 100644 --- a/Modules/Compiler/Tasking-FindBinUtils.cmake +++ b/Modules/Compiler/Tasking-FindBinUtils.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Find the archiver for the compiler architecture, which is always in the same # directory as the compiler. diff --git a/Modules/Compiler/Tasking.cmake b/Modules/Compiler/Tasking.cmake index 086ead9..14c0e60 100644 --- a/Modules/Compiler/Tasking.cmake +++ b/Modules/Compiler/Tasking.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(_Tasking_CMAKE_LOADED) diff --git a/Modules/Compiler/XL.cmake b/Modules/Compiler/XL.cmake index 09cf601..48dcdc8 100644 --- a/Modules/Compiler/XL.cmake +++ b/Modules/Compiler/XL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Compiler/XLClang.cmake b/Modules/Compiler/XLClang.cmake index 8c3e5e9..01c4bc9 100644 --- a/Modules/Compiler/XLClang.cmake +++ b/Modules/Compiler/XLClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index 4d238ad..e7967a0 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Dart diff --git a/Modules/DeployQt4.cmake b/Modules/DeployQt4.cmake index dc64220..39443cf 100644 --- a/Modules/DeployQt4.cmake +++ b/Modules/DeployQt4.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: DeployQt4 diff --git a/Modules/Documentation.cmake b/Modules/Documentation.cmake index 2430f85..bd30068 100644 --- a/Modules/Documentation.cmake +++ b/Modules/Documentation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Documentation diff --git a/Modules/ExternalData.cmake b/Modules/ExternalData.cmake index 70b547b..5d28929 100644 --- a/Modules/ExternalData.cmake +++ b/Modules/ExternalData.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: ExternalData diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake index e2d26ca..37bd39c 100644 --- a/Modules/ExternalProject.cmake +++ b/Modules/ExternalProject.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) diff --git a/Modules/ExternalProject/download.cmake.in b/Modules/ExternalProject/download.cmake.in index 5e8c42f..ae2a8ab 100644 --- a/Modules/ExternalProject/download.cmake.in +++ b/Modules/ExternalProject/download.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/ExternalProject/extractfile.cmake.in b/Modules/ExternalProject/extractfile.cmake.in index a601bd7..c6ba9a8 100644 --- a/Modules/ExternalProject/extractfile.cmake.in +++ b/Modules/ExternalProject/extractfile.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/ExternalProject/gitclone.cmake.in b/Modules/ExternalProject/gitclone.cmake.in index 77d6be2..449bcb3 100644 --- a/Modules/ExternalProject/gitclone.cmake.in +++ b/Modules/ExternalProject/gitclone.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/ExternalProject/gitupdate.cmake.in b/Modules/ExternalProject/gitupdate.cmake.in index 8a214df..2d4bbd2 100644 --- a/Modules/ExternalProject/gitupdate.cmake.in +++ b/Modules/ExternalProject/gitupdate.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/ExternalProject/hgclone.cmake.in b/Modules/ExternalProject/hgclone.cmake.in index 5d5e8ca..6fc9745 100644 --- a/Modules/ExternalProject/hgclone.cmake.in +++ b/Modules/ExternalProject/hgclone.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/ExternalProject/mkdirs.cmake.in b/Modules/ExternalProject/mkdirs.cmake.in index 6d2ed28..65b68dd 100644 --- a/Modules/ExternalProject/mkdirs.cmake.in +++ b/Modules/ExternalProject/mkdirs.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/ExternalProject/verify.cmake.in b/Modules/ExternalProject/verify.cmake.in index 3cf768f..d2797cf 100644 --- a/Modules/ExternalProject/verify.cmake.in +++ b/Modules/ExternalProject/verify.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake diff --git a/Modules/FLTKCompatibility.cmake b/Modules/FLTKCompatibility.cmake index e91531f..9572f58 100644 --- a/Modules/FLTKCompatibility.cmake +++ b/Modules/FLTKCompatibility.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(CheckIncludeFile) diff --git a/Modules/FeatureSummary.cmake b/Modules/FeatureSummary.cmake index 16839c9..c4b27da 100644 --- a/Modules/FeatureSummary.cmake +++ b/Modules/FeatureSummary.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) diff --git a/Modules/FetchContent.cmake b/Modules/FetchContent.cmake index 8488c12..2088549 100644 --- a/Modules/FetchContent.cmake +++ b/Modules/FetchContent.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FetchContent diff --git a/Modules/FetchContent/CMakeLists.cmake.in b/Modules/FetchContent/CMakeLists.cmake.in index 8adb533..8fef8c2 100644 --- a/Modules/FetchContent/CMakeLists.cmake.in +++ b/Modules/FetchContent/CMakeLists.cmake.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION @CMAKE_VERSION@) diff --git a/Modules/FindALSA.cmake b/Modules/FindALSA.cmake index 8ee20b7..0b7670f 100644 --- a/Modules/FindALSA.cmake +++ b/Modules/FindALSA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindALSA diff --git a/Modules/FindASPELL.cmake b/Modules/FindASPELL.cmake index dd0537e..10d61ac 100644 --- a/Modules/FindASPELL.cmake +++ b/Modules/FindASPELL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindASPELL diff --git a/Modules/FindAVIFile.cmake b/Modules/FindAVIFile.cmake index df96434..4798c34 100644 --- a/Modules/FindAVIFile.cmake +++ b/Modules/FindAVIFile.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindAVIFile diff --git a/Modules/FindArmadillo.cmake b/Modules/FindArmadillo.cmake index d1d3e31..1cde7de 100644 --- a/Modules/FindArmadillo.cmake +++ b/Modules/FindArmadillo.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindArmadillo diff --git a/Modules/FindBISON.cmake b/Modules/FindBISON.cmake index 7335238..cbda5cd 100644 --- a/Modules/FindBISON.cmake +++ b/Modules/FindBISON.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindBISON diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake index 6d60c9d..53d74bc 100644 --- a/Modules/FindBLAS.cmake +++ b/Modules/FindBLAS.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindBLAS diff --git a/Modules/FindBZip2.cmake b/Modules/FindBZip2.cmake index 133f97a..b214f30 100644 --- a/Modules/FindBZip2.cmake +++ b/Modules/FindBZip2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindBZip2 diff --git a/Modules/FindBacktrace.cmake b/Modules/FindBacktrace.cmake index f5f9a7a..ca768f9 100644 --- a/Modules/FindBacktrace.cmake +++ b/Modules/FindBacktrace.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindBacktrace diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 0ae6918..7436336 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindBoost diff --git a/Modules/FindBullet.cmake b/Modules/FindBullet.cmake index 9b05348..f9250ae 100644 --- a/Modules/FindBullet.cmake +++ b/Modules/FindBullet.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindBullet diff --git a/Modules/FindCABLE.cmake b/Modules/FindCABLE.cmake index 1f4ae76..4d72897 100644 --- a/Modules/FindCABLE.cmake +++ b/Modules/FindCABLE.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCABLE diff --git a/Modules/FindCUDAToolkit.cmake b/Modules/FindCUDAToolkit.cmake index cf9a055..b10880d 100644 --- a/Modules/FindCUDAToolkit.cmake +++ b/Modules/FindCUDAToolkit.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCUDAToolkit diff --git a/Modules/FindCURL.cmake b/Modules/FindCURL.cmake index aaed590..d4b4b6b 100644 --- a/Modules/FindCURL.cmake +++ b/Modules/FindCURL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCURL diff --git a/Modules/FindCVS.cmake b/Modules/FindCVS.cmake index fb37329..9ae6d8c 100644 --- a/Modules/FindCVS.cmake +++ b/Modules/FindCVS.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCVS diff --git a/Modules/FindCoin3D.cmake b/Modules/FindCoin3D.cmake index c6338b1..f517f3b 100644 --- a/Modules/FindCoin3D.cmake +++ b/Modules/FindCoin3D.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCoin3D diff --git a/Modules/FindCups.cmake b/Modules/FindCups.cmake index 76ff504..c5355f1 100644 --- a/Modules/FindCups.cmake +++ b/Modules/FindCups.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCups diff --git a/Modules/FindCurses.cmake b/Modules/FindCurses.cmake index d5bb10d..b166e68 100644 --- a/Modules/FindCurses.cmake +++ b/Modules/FindCurses.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCurses diff --git a/Modules/FindCxxTest.cmake b/Modules/FindCxxTest.cmake index 7292082..8fd7285 100644 --- a/Modules/FindCxxTest.cmake +++ b/Modules/FindCxxTest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCxxTest diff --git a/Modules/FindCygwin.cmake b/Modules/FindCygwin.cmake index 5bbc802..30bed56 100644 --- a/Modules/FindCygwin.cmake +++ b/Modules/FindCygwin.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindCygwin diff --git a/Modules/FindDCMTK.cmake b/Modules/FindDCMTK.cmake index 5f5267c..4e0ff47 100644 --- a/Modules/FindDCMTK.cmake +++ b/Modules/FindDCMTK.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindDCMTK diff --git a/Modules/FindDart.cmake b/Modules/FindDart.cmake index 7ee51b9..96cce45 100644 --- a/Modules/FindDart.cmake +++ b/Modules/FindDart.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindDart diff --git a/Modules/FindDevIL.cmake b/Modules/FindDevIL.cmake index 0c8bfb3..e012f91 100644 --- a/Modules/FindDevIL.cmake +++ b/Modules/FindDevIL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindDevIL diff --git a/Modules/FindDoxygen.cmake b/Modules/FindDoxygen.cmake index 51503b6..41979ee 100644 --- a/Modules/FindDoxygen.cmake +++ b/Modules/FindDoxygen.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindDoxygen diff --git a/Modules/FindEXPAT.cmake b/Modules/FindEXPAT.cmake index 741689e..0dcf361 100644 --- a/Modules/FindEXPAT.cmake +++ b/Modules/FindEXPAT.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindEXPAT diff --git a/Modules/FindEnvModules.cmake b/Modules/FindEnvModules.cmake index 14f8fdf..37901fc 100644 --- a/Modules/FindEnvModules.cmake +++ b/Modules/FindEnvModules.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindEnvModules diff --git a/Modules/FindFLEX.cmake b/Modules/FindFLEX.cmake index 56b4c35..b7a6e5f 100644 --- a/Modules/FindFLEX.cmake +++ b/Modules/FindFLEX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindFLEX diff --git a/Modules/FindFLTK.cmake b/Modules/FindFLTK.cmake index 0343caa..8305b65 100644 --- a/Modules/FindFLTK.cmake +++ b/Modules/FindFLTK.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindFLTK diff --git a/Modules/FindFLTK2.cmake b/Modules/FindFLTK2.cmake index a9937eb..83c5d20 100644 --- a/Modules/FindFLTK2.cmake +++ b/Modules/FindFLTK2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindFLTK2 diff --git a/Modules/FindFontconfig.cmake b/Modules/FindFontconfig.cmake index 8b8066b..a4546fd 100644 --- a/Modules/FindFontconfig.cmake +++ b/Modules/FindFontconfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindFontconfig diff --git a/Modules/FindFreetype.cmake b/Modules/FindFreetype.cmake index 0f8c931..8a8e002 100644 --- a/Modules/FindFreetype.cmake +++ b/Modules/FindFreetype.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindFreetype diff --git a/Modules/FindGCCXML.cmake b/Modules/FindGCCXML.cmake index e6c7f24..43ca395 100644 --- a/Modules/FindGCCXML.cmake +++ b/Modules/FindGCCXML.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGCCXML diff --git a/Modules/FindGDAL.cmake b/Modules/FindGDAL.cmake index 8604911..b952949 100644 --- a/Modules/FindGDAL.cmake +++ b/Modules/FindGDAL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGDAL diff --git a/Modules/FindGIF.cmake b/Modules/FindGIF.cmake index 5214982..81c5080 100644 --- a/Modules/FindGIF.cmake +++ b/Modules/FindGIF.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGIF diff --git a/Modules/FindGLEW.cmake b/Modules/FindGLEW.cmake index 59c9b33..083217e 100644 --- a/Modules/FindGLEW.cmake +++ b/Modules/FindGLEW.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGLEW diff --git a/Modules/FindGLU.cmake b/Modules/FindGLU.cmake index 9892805..8f1efe0 100644 --- a/Modules/FindGLU.cmake +++ b/Modules/FindGLU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Use of this file is deprecated, and is here for backwards compatibility with CMake 1.4 diff --git a/Modules/FindGLUT.cmake b/Modules/FindGLUT.cmake index b53aee8..3704e85 100644 --- a/Modules/FindGLUT.cmake +++ b/Modules/FindGLUT.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGLUT diff --git a/Modules/FindGSL.cmake b/Modules/FindGSL.cmake index 45f8822..5714979 100644 --- a/Modules/FindGSL.cmake +++ b/Modules/FindGSL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGSL diff --git a/Modules/FindGTK.cmake b/Modules/FindGTK.cmake index 552b19a..c10f0c8 100644 --- a/Modules/FindGTK.cmake +++ b/Modules/FindGTK.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGTK diff --git a/Modules/FindGTK2.cmake b/Modules/FindGTK2.cmake index adb8ef1..7b1e8ab 100644 --- a/Modules/FindGTK2.cmake +++ b/Modules/FindGTK2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGTK2 diff --git a/Modules/FindGTest.cmake b/Modules/FindGTest.cmake index cd2b3bb..83fbe3a 100644 --- a/Modules/FindGTest.cmake +++ b/Modules/FindGTest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGTest diff --git a/Modules/FindGettext.cmake b/Modules/FindGettext.cmake index 940d2c0..9aae486 100644 --- a/Modules/FindGettext.cmake +++ b/Modules/FindGettext.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGettext diff --git a/Modules/FindGit.cmake b/Modules/FindGit.cmake index 87707a9..f0caf4e 100644 --- a/Modules/FindGit.cmake +++ b/Modules/FindGit.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGit diff --git a/Modules/FindGnuTLS.cmake b/Modules/FindGnuTLS.cmake index 0d65dca..2f1033b 100644 --- a/Modules/FindGnuTLS.cmake +++ b/Modules/FindGnuTLS.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGnuTLS diff --git a/Modules/FindGnuplot.cmake b/Modules/FindGnuplot.cmake index 07cfbd3..851f193 100644 --- a/Modules/FindGnuplot.cmake +++ b/Modules/FindGnuplot.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindGnuplot diff --git a/Modules/FindHDF5.cmake b/Modules/FindHDF5.cmake index 291db80..2f0c3c1 100644 --- a/Modules/FindHDF5.cmake +++ b/Modules/FindHDF5.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindHDF5 diff --git a/Modules/FindHSPELL.cmake b/Modules/FindHSPELL.cmake index 875e9f3..8644ab7 100644 --- a/Modules/FindHSPELL.cmake +++ b/Modules/FindHSPELL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindHSPELL diff --git a/Modules/FindHTMLHelp.cmake b/Modules/FindHTMLHelp.cmake index a11ad4d..c6ee4bc 100644 --- a/Modules/FindHTMLHelp.cmake +++ b/Modules/FindHTMLHelp.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindHTMLHelp diff --git a/Modules/FindHg.cmake b/Modules/FindHg.cmake index 2dc5933..a26e01f 100644 --- a/Modules/FindHg.cmake +++ b/Modules/FindHg.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindHg diff --git a/Modules/FindICU.cmake b/Modules/FindICU.cmake index 20523d1..a7b0569 100644 --- a/Modules/FindICU.cmake +++ b/Modules/FindICU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindICU diff --git a/Modules/FindIce.cmake b/Modules/FindIce.cmake index 6eb4228..a8bf311 100644 --- a/Modules/FindIce.cmake +++ b/Modules/FindIce.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindIce diff --git a/Modules/FindIconv.cmake b/Modules/FindIconv.cmake index d70b266..2c6e3b4 100644 --- a/Modules/FindIconv.cmake +++ b/Modules/FindIconv.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindIconv diff --git a/Modules/FindIcotool.cmake b/Modules/FindIcotool.cmake index 62b8d5f..14c14da 100644 --- a/Modules/FindIcotool.cmake +++ b/Modules/FindIcotool.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindIcotool diff --git a/Modules/FindImageMagick.cmake b/Modules/FindImageMagick.cmake index ebcc710..ff0a6a6 100644 --- a/Modules/FindImageMagick.cmake +++ b/Modules/FindImageMagick.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindImageMagick diff --git a/Modules/FindIntl.cmake b/Modules/FindIntl.cmake index e442105..1c93dea 100644 --- a/Modules/FindIntl.cmake +++ b/Modules/FindIntl.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindIntl diff --git a/Modules/FindJNI.cmake b/Modules/FindJNI.cmake index 9015161..59c2634 100644 --- a/Modules/FindJNI.cmake +++ b/Modules/FindJNI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindJNI diff --git a/Modules/FindJPEG.cmake b/Modules/FindJPEG.cmake index 35b9204..f12945b 100644 --- a/Modules/FindJPEG.cmake +++ b/Modules/FindJPEG.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindJPEG diff --git a/Modules/FindJasper.cmake b/Modules/FindJasper.cmake index 67b955f..2c2cbbf 100644 --- a/Modules/FindJasper.cmake +++ b/Modules/FindJasper.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindJasper diff --git a/Modules/FindJava.cmake b/Modules/FindJava.cmake index 157b457..1413acd 100644 --- a/Modules/FindJava.cmake +++ b/Modules/FindJava.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindJava diff --git a/Modules/FindKDE3.cmake b/Modules/FindKDE3.cmake index 30ea5e6..a2e0219 100644 --- a/Modules/FindKDE3.cmake +++ b/Modules/FindKDE3.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindKDE3 diff --git a/Modules/FindKDE4.cmake b/Modules/FindKDE4.cmake index 695e9ac..220906b 100644 --- a/Modules/FindKDE4.cmake +++ b/Modules/FindKDE4.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindKDE4 diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake index 8c9d0b4..86c438a 100644 --- a/Modules/FindLAPACK.cmake +++ b/Modules/FindLAPACK.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLAPACK diff --git a/Modules/FindLATEX.cmake b/Modules/FindLATEX.cmake index d75aa62..c4b99ad 100644 --- a/Modules/FindLATEX.cmake +++ b/Modules/FindLATEX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLATEX diff --git a/Modules/FindLTTngUST.cmake b/Modules/FindLTTngUST.cmake index 221919a..a5ee9a9 100644 --- a/Modules/FindLTTngUST.cmake +++ b/Modules/FindLTTngUST.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLTTngUST diff --git a/Modules/FindLibArchive.cmake b/Modules/FindLibArchive.cmake index 02e336e..538b654 100644 --- a/Modules/FindLibArchive.cmake +++ b/Modules/FindLibArchive.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibArchive diff --git a/Modules/FindLibLZMA.cmake b/Modules/FindLibLZMA.cmake index 7cb37fb..f42dccd 100644 --- a/Modules/FindLibLZMA.cmake +++ b/Modules/FindLibLZMA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibLZMA diff --git a/Modules/FindLibXml2.cmake b/Modules/FindLibXml2.cmake index 14d0634..befed4f 100644 --- a/Modules/FindLibXml2.cmake +++ b/Modules/FindLibXml2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibXml2 diff --git a/Modules/FindLibXslt.cmake b/Modules/FindLibXslt.cmake index 6b311d4..f9f1dad 100644 --- a/Modules/FindLibXslt.cmake +++ b/Modules/FindLibXslt.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibXslt diff --git a/Modules/FindLibinput.cmake b/Modules/FindLibinput.cmake index 8ed0e4c..68208c2 100644 --- a/Modules/FindLibinput.cmake +++ b/Modules/FindLibinput.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibinput diff --git a/Modules/FindLua.cmake b/Modules/FindLua.cmake index fa07ed3..396e7d1 100644 --- a/Modules/FindLua.cmake +++ b/Modules/FindLua.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLua diff --git a/Modules/FindLua50.cmake b/Modules/FindLua50.cmake index 6daec5f..e440b98 100644 --- a/Modules/FindLua50.cmake +++ b/Modules/FindLua50.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLua50 diff --git a/Modules/FindLua51.cmake b/Modules/FindLua51.cmake index 0c12a3a..b6c66f3 100644 --- a/Modules/FindLua51.cmake +++ b/Modules/FindLua51.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLua51 diff --git a/Modules/FindMFC.cmake b/Modules/FindMFC.cmake index 38259c3..f34c328 100644 --- a/Modules/FindMFC.cmake +++ b/Modules/FindMFC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMFC diff --git a/Modules/FindMPEG.cmake b/Modules/FindMPEG.cmake index 900ee36..26f8be4 100644 --- a/Modules/FindMPEG.cmake +++ b/Modules/FindMPEG.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMPEG diff --git a/Modules/FindMPEG2.cmake b/Modules/FindMPEG2.cmake index e04ecb9..66a0ed0 100644 --- a/Modules/FindMPEG2.cmake +++ b/Modules/FindMPEG2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMPEG2 diff --git a/Modules/FindMPI.cmake b/Modules/FindMPI.cmake index e66a42f..c6a25a7 100644 --- a/Modules/FindMPI.cmake +++ b/Modules/FindMPI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMPI diff --git a/Modules/FindMatlab.cmake b/Modules/FindMatlab.cmake index a9a10ba..d7927a4 100644 --- a/Modules/FindMatlab.cmake +++ b/Modules/FindMatlab.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMatlab diff --git a/Modules/FindMotif.cmake b/Modules/FindMotif.cmake index 40c0dc5..44edfcd 100644 --- a/Modules/FindMotif.cmake +++ b/Modules/FindMotif.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMotif diff --git a/Modules/FindMsys.cmake b/Modules/FindMsys.cmake index 86597c2..58155ba 100644 --- a/Modules/FindMsys.cmake +++ b/Modules/FindMsys.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindMsys diff --git a/Modules/FindODBC.cmake b/Modules/FindODBC.cmake index f3adb8a..982a005 100644 --- a/Modules/FindODBC.cmake +++ b/Modules/FindODBC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindODBC diff --git a/Modules/FindOpenACC.cmake b/Modules/FindOpenACC.cmake index a7c1a0f..b78d381 100644 --- a/Modules/FindOpenACC.cmake +++ b/Modules/FindOpenACC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenACC diff --git a/Modules/FindOpenAL.cmake b/Modules/FindOpenAL.cmake index 8015502..0466b9c 100644 --- a/Modules/FindOpenAL.cmake +++ b/Modules/FindOpenAL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenAL diff --git a/Modules/FindOpenCL.cmake b/Modules/FindOpenCL.cmake index 697b062..e896e97 100644 --- a/Modules/FindOpenCL.cmake +++ b/Modules/FindOpenCL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenCL diff --git a/Modules/FindOpenGL.cmake b/Modules/FindOpenGL.cmake index 69faf7e..a842756 100644 --- a/Modules/FindOpenGL.cmake +++ b/Modules/FindOpenGL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenGL diff --git a/Modules/FindOpenMP.cmake b/Modules/FindOpenMP.cmake index 7093727..99c6765 100644 --- a/Modules/FindOpenMP.cmake +++ b/Modules/FindOpenMP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenMP diff --git a/Modules/FindOpenSP.cmake b/Modules/FindOpenSP.cmake index 8f6d50a..605c294 100644 --- a/Modules/FindOpenSP.cmake +++ b/Modules/FindOpenSP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenSP diff --git a/Modules/FindOpenSSL.cmake b/Modules/FindOpenSSL.cmake index f7a87df..033460b 100644 --- a/Modules/FindOpenSSL.cmake +++ b/Modules/FindOpenSSL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenSSL diff --git a/Modules/FindOpenSceneGraph.cmake b/Modules/FindOpenSceneGraph.cmake index 3c96766..d4ffa10 100644 --- a/Modules/FindOpenSceneGraph.cmake +++ b/Modules/FindOpenSceneGraph.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenSceneGraph diff --git a/Modules/FindOpenThreads.cmake b/Modules/FindOpenThreads.cmake index adff238..d91dc05 100644 --- a/Modules/FindOpenThreads.cmake +++ b/Modules/FindOpenThreads.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindOpenThreads diff --git a/Modules/FindPHP4.cmake b/Modules/FindPHP4.cmake index f48b583..a5d9707 100644 --- a/Modules/FindPHP4.cmake +++ b/Modules/FindPHP4.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPHP4 diff --git a/Modules/FindPNG.cmake b/Modules/FindPNG.cmake index 11d2056..52d137f 100644 --- a/Modules/FindPNG.cmake +++ b/Modules/FindPNG.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPNG diff --git a/Modules/FindPackageHandleStandardArgs.cmake b/Modules/FindPackageHandleStandardArgs.cmake index a6fb37b..c2eeb49 100644 --- a/Modules/FindPackageHandleStandardArgs.cmake +++ b/Modules/FindPackageHandleStandardArgs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPackageHandleStandardArgs diff --git a/Modules/FindPackageMessage.cmake b/Modules/FindPackageMessage.cmake index 7efbe18..a9f2d2b 100644 --- a/Modules/FindPackageMessage.cmake +++ b/Modules/FindPackageMessage.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPackageMessage diff --git a/Modules/FindPatch.cmake b/Modules/FindPatch.cmake index c1ac2a7..009a598 100644 --- a/Modules/FindPatch.cmake +++ b/Modules/FindPatch.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPatch diff --git a/Modules/FindPerl.cmake b/Modules/FindPerl.cmake index 01fd1de..2bc6a61 100644 --- a/Modules/FindPerl.cmake +++ b/Modules/FindPerl.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPerl diff --git a/Modules/FindPerlLibs.cmake b/Modules/FindPerlLibs.cmake index 2c1da6c..b275061 100644 --- a/Modules/FindPerlLibs.cmake +++ b/Modules/FindPerlLibs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPerlLibs diff --git a/Modules/FindPhysFS.cmake b/Modules/FindPhysFS.cmake index efb06ba..bbb9856 100644 --- a/Modules/FindPhysFS.cmake +++ b/Modules/FindPhysFS.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPhysFS diff --git a/Modules/FindPike.cmake b/Modules/FindPike.cmake index b78db2a..5ad5c4f 100644 --- a/Modules/FindPike.cmake +++ b/Modules/FindPike.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPike diff --git a/Modules/FindPkgConfig.cmake b/Modules/FindPkgConfig.cmake index faba99c..e2c322a 100644 --- a/Modules/FindPkgConfig.cmake +++ b/Modules/FindPkgConfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[========================================[.rst: FindPkgConfig diff --git a/Modules/FindPostgreSQL.cmake b/Modules/FindPostgreSQL.cmake index b7dcbb8..5b70d53 100644 --- a/Modules/FindPostgreSQL.cmake +++ b/Modules/FindPostgreSQL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPostgreSQL diff --git a/Modules/FindProducer.cmake b/Modules/FindProducer.cmake index 0671a62..9833658 100644 --- a/Modules/FindProducer.cmake +++ b/Modules/FindProducer.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindProducer diff --git a/Modules/FindProtobuf.cmake b/Modules/FindProtobuf.cmake index 665190c..89a6cfd 100644 --- a/Modules/FindProtobuf.cmake +++ b/Modules/FindProtobuf.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindProtobuf diff --git a/Modules/FindPython.cmake b/Modules/FindPython.cmake index 04728ad..73d41dd 100644 --- a/Modules/FindPython.cmake +++ b/Modules/FindPython.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPython diff --git a/Modules/FindPython/Support.cmake b/Modules/FindPython/Support.cmake index 1c5641e..f7c1065 100644 --- a/Modules/FindPython/Support.cmake +++ b/Modules/FindPython/Support.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # # This file is a "template" file used by various FindPython modules. diff --git a/Modules/FindPython2.cmake b/Modules/FindPython2.cmake index 7c6ac6a..ce9a7d5 100644 --- a/Modules/FindPython2.cmake +++ b/Modules/FindPython2.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPython2 diff --git a/Modules/FindPython3.cmake b/Modules/FindPython3.cmake index 757e57c..5edc087 100644 --- a/Modules/FindPython3.cmake +++ b/Modules/FindPython3.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPython3 diff --git a/Modules/FindPythonInterp.cmake b/Modules/FindPythonInterp.cmake index 1c76e64..e236112 100644 --- a/Modules/FindPythonInterp.cmake +++ b/Modules/FindPythonInterp.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPythonInterp diff --git a/Modules/FindPythonLibs.cmake b/Modules/FindPythonLibs.cmake index a932885..3d7b536 100644 --- a/Modules/FindPythonLibs.cmake +++ b/Modules/FindPythonLibs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindPythonLibs diff --git a/Modules/FindQt.cmake b/Modules/FindQt.cmake index 604f8e3..31d4c0b 100644 --- a/Modules/FindQt.cmake +++ b/Modules/FindQt.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindQt diff --git a/Modules/FindQt3.cmake b/Modules/FindQt3.cmake index c919ffd..594fc63 100644 --- a/Modules/FindQt3.cmake +++ b/Modules/FindQt3.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindQt3 diff --git a/Modules/FindQt4.cmake b/Modules/FindQt4.cmake index e58b2e5..e7c0fe2 100644 --- a/Modules/FindQt4.cmake +++ b/Modules/FindQt4.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindQt4 diff --git a/Modules/FindQuickTime.cmake b/Modules/FindQuickTime.cmake index 95a9a0d..5df14ca 100644 --- a/Modules/FindQuickTime.cmake +++ b/Modules/FindQuickTime.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindQuickTime diff --git a/Modules/FindRTI.cmake b/Modules/FindRTI.cmake index 2bee3ea..0431f09 100644 --- a/Modules/FindRTI.cmake +++ b/Modules/FindRTI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindRTI diff --git a/Modules/FindRuby.cmake b/Modules/FindRuby.cmake index bac96f0..3881319 100644 --- a/Modules/FindRuby.cmake +++ b/Modules/FindRuby.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindRuby diff --git a/Modules/FindSDL.cmake b/Modules/FindSDL.cmake index 7de8229..0e85990 100644 --- a/Modules/FindSDL.cmake +++ b/Modules/FindSDL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL diff --git a/Modules/FindSDL_gfx.cmake b/Modules/FindSDL_gfx.cmake index 89b7618..fb066c9 100644 --- a/Modules/FindSDL_gfx.cmake +++ b/Modules/FindSDL_gfx.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL_gfx diff --git a/Modules/FindSDL_image.cmake b/Modules/FindSDL_image.cmake index 12d6c13..995baaa 100644 --- a/Modules/FindSDL_image.cmake +++ b/Modules/FindSDL_image.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL_image diff --git a/Modules/FindSDL_mixer.cmake b/Modules/FindSDL_mixer.cmake index 2f9cc47..5219f84 100644 --- a/Modules/FindSDL_mixer.cmake +++ b/Modules/FindSDL_mixer.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL_mixer diff --git a/Modules/FindSDL_net.cmake b/Modules/FindSDL_net.cmake index a8c959e..a8189fb 100644 --- a/Modules/FindSDL_net.cmake +++ b/Modules/FindSDL_net.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL_net diff --git a/Modules/FindSDL_sound.cmake b/Modules/FindSDL_sound.cmake index 7f84c12..30a89aa 100644 --- a/Modules/FindSDL_sound.cmake +++ b/Modules/FindSDL_sound.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL_sound diff --git a/Modules/FindSDL_ttf.cmake b/Modules/FindSDL_ttf.cmake index 6a778ce..080705f 100644 --- a/Modules/FindSDL_ttf.cmake +++ b/Modules/FindSDL_ttf.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSDL_ttf diff --git a/Modules/FindSQLite3.cmake b/Modules/FindSQLite3.cmake index 3420538..fcacbef 100644 --- a/Modules/FindSQLite3.cmake +++ b/Modules/FindSQLite3.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSQLite3 diff --git a/Modules/FindSWIG.cmake b/Modules/FindSWIG.cmake index 94c75cc..57303e5 100644 --- a/Modules/FindSWIG.cmake +++ b/Modules/FindSWIG.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSWIG diff --git a/Modules/FindSelfPackers.cmake b/Modules/FindSelfPackers.cmake index a6eb6e5..f83766b 100644 --- a/Modules/FindSelfPackers.cmake +++ b/Modules/FindSelfPackers.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSelfPackers diff --git a/Modules/FindSquish.cmake b/Modules/FindSquish.cmake index d6a10ce..986db16 100644 --- a/Modules/FindSquish.cmake +++ b/Modules/FindSquish.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSquish diff --git a/Modules/FindSubversion.cmake b/Modules/FindSubversion.cmake index 066a4ca..294f415 100644 --- a/Modules/FindSubversion.cmake +++ b/Modules/FindSubversion.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindSubversion diff --git a/Modules/FindTCL.cmake b/Modules/FindTCL.cmake index d5bbc4c..1273e8d 100644 --- a/Modules/FindTCL.cmake +++ b/Modules/FindTCL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindTCL diff --git a/Modules/FindTIFF.cmake b/Modules/FindTIFF.cmake index 77056d6..ad4b3c6 100644 --- a/Modules/FindTIFF.cmake +++ b/Modules/FindTIFF.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindTIFF diff --git a/Modules/FindTclStub.cmake b/Modules/FindTclStub.cmake index 8f63480..62e5ef2 100644 --- a/Modules/FindTclStub.cmake +++ b/Modules/FindTclStub.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindTclStub diff --git a/Modules/FindTclsh.cmake b/Modules/FindTclsh.cmake index 17ae6f1..878735a 100644 --- a/Modules/FindTclsh.cmake +++ b/Modules/FindTclsh.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindTclsh diff --git a/Modules/FindThreads.cmake b/Modules/FindThreads.cmake index 6f48a99..26bd7d3 100644 --- a/Modules/FindThreads.cmake +++ b/Modules/FindThreads.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindThreads diff --git a/Modules/FindUnixCommands.cmake b/Modules/FindUnixCommands.cmake index 140a8f5..12f1169 100644 --- a/Modules/FindUnixCommands.cmake +++ b/Modules/FindUnixCommands.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindUnixCommands diff --git a/Modules/FindVulkan.cmake b/Modules/FindVulkan.cmake index 6c999e3..fab9806 100644 --- a/Modules/FindVulkan.cmake +++ b/Modules/FindVulkan.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindVulkan diff --git a/Modules/FindWget.cmake b/Modules/FindWget.cmake index 34ba74b..9e3226a 100644 --- a/Modules/FindWget.cmake +++ b/Modules/FindWget.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindWget diff --git a/Modules/FindWish.cmake b/Modules/FindWish.cmake index b332bde..9e39d36 100644 --- a/Modules/FindWish.cmake +++ b/Modules/FindWish.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindWish diff --git a/Modules/FindX11.cmake b/Modules/FindX11.cmake index 9dee948..cfbcc30 100644 --- a/Modules/FindX11.cmake +++ b/Modules/FindX11.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindX11 diff --git a/Modules/FindXCTest.cmake b/Modules/FindXCTest.cmake index 1f4efe3..d143118 100644 --- a/Modules/FindXCTest.cmake +++ b/Modules/FindXCTest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindXCTest diff --git a/Modules/FindXMLRPC.cmake b/Modules/FindXMLRPC.cmake index 5b18bac..edc4dfd 100644 --- a/Modules/FindXMLRPC.cmake +++ b/Modules/FindXMLRPC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindXMLRPC diff --git a/Modules/FindXalanC.cmake b/Modules/FindXalanC.cmake index d519dd7..11d2551 100644 --- a/Modules/FindXalanC.cmake +++ b/Modules/FindXalanC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindXalanC diff --git a/Modules/FindXercesC.cmake b/Modules/FindXercesC.cmake index 7b95cfc..68e6e70 100644 --- a/Modules/FindXercesC.cmake +++ b/Modules/FindXercesC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindXercesC diff --git a/Modules/FindZLIB.cmake b/Modules/FindZLIB.cmake index a79d9ab..2920934 100644 --- a/Modules/FindZLIB.cmake +++ b/Modules/FindZLIB.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindZLIB diff --git a/Modules/Findosg.cmake b/Modules/Findosg.cmake index 8e01d64..4256c19 100644 --- a/Modules/Findosg.cmake +++ b/Modules/Findosg.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Findosg diff --git a/Modules/FindosgAnimation.cmake b/Modules/FindosgAnimation.cmake index f2c32a3..300022b 100644 --- a/Modules/FindosgAnimation.cmake +++ b/Modules/FindosgAnimation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgAnimation diff --git a/Modules/FindosgDB.cmake b/Modules/FindosgDB.cmake index cfaeaaa..5d7fd5c 100644 --- a/Modules/FindosgDB.cmake +++ b/Modules/FindosgDB.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgDB diff --git a/Modules/FindosgFX.cmake b/Modules/FindosgFX.cmake index 89d8748..191b65f 100644 --- a/Modules/FindosgFX.cmake +++ b/Modules/FindosgFX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgFX diff --git a/Modules/FindosgGA.cmake b/Modules/FindosgGA.cmake index 9979dea..192da78 100644 --- a/Modules/FindosgGA.cmake +++ b/Modules/FindosgGA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgGA diff --git a/Modules/FindosgIntrospection.cmake b/Modules/FindosgIntrospection.cmake index b3666f2..fc40421 100644 --- a/Modules/FindosgIntrospection.cmake +++ b/Modules/FindosgIntrospection.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgIntrospection diff --git a/Modules/FindosgManipulator.cmake b/Modules/FindosgManipulator.cmake index 8b075e9..908c767 100644 --- a/Modules/FindosgManipulator.cmake +++ b/Modules/FindosgManipulator.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgManipulator diff --git a/Modules/FindosgParticle.cmake b/Modules/FindosgParticle.cmake index 4b195dc..1a9c278 100644 --- a/Modules/FindosgParticle.cmake +++ b/Modules/FindosgParticle.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgParticle diff --git a/Modules/FindosgPresentation.cmake b/Modules/FindosgPresentation.cmake index 9158db8..07f022e 100644 --- a/Modules/FindosgPresentation.cmake +++ b/Modules/FindosgPresentation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgPresentation diff --git a/Modules/FindosgProducer.cmake b/Modules/FindosgProducer.cmake index 932a98a..ca949b7 100644 --- a/Modules/FindosgProducer.cmake +++ b/Modules/FindosgProducer.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgProducer diff --git a/Modules/FindosgQt.cmake b/Modules/FindosgQt.cmake index 2dc7165..3f170fe 100644 --- a/Modules/FindosgQt.cmake +++ b/Modules/FindosgQt.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgQt diff --git a/Modules/FindosgShadow.cmake b/Modules/FindosgShadow.cmake index 41b5236..e168146 100644 --- a/Modules/FindosgShadow.cmake +++ b/Modules/FindosgShadow.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgShadow diff --git a/Modules/FindosgSim.cmake b/Modules/FindosgSim.cmake index 97ae23b..b152584 100644 --- a/Modules/FindosgSim.cmake +++ b/Modules/FindosgSim.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgSim diff --git a/Modules/FindosgTerrain.cmake b/Modules/FindosgTerrain.cmake index 746b909..4bebf87 100644 --- a/Modules/FindosgTerrain.cmake +++ b/Modules/FindosgTerrain.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgTerrain diff --git a/Modules/FindosgText.cmake b/Modules/FindosgText.cmake index 7d7e919..21e6a80 100644 --- a/Modules/FindosgText.cmake +++ b/Modules/FindosgText.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgText diff --git a/Modules/FindosgUtil.cmake b/Modules/FindosgUtil.cmake index 7066cb6..2ab0de7 100644 --- a/Modules/FindosgUtil.cmake +++ b/Modules/FindosgUtil.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgUtil diff --git a/Modules/FindosgViewer.cmake b/Modules/FindosgViewer.cmake index 53fa863..23e7d6b33 100644 --- a/Modules/FindosgViewer.cmake +++ b/Modules/FindosgViewer.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgViewer diff --git a/Modules/FindosgVolume.cmake b/Modules/FindosgVolume.cmake index fcb8e08..da45d29 100644 --- a/Modules/FindosgVolume.cmake +++ b/Modules/FindosgVolume.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgVolume diff --git a/Modules/FindosgWidget.cmake b/Modules/FindosgWidget.cmake index 10ff828..75dee17 100644 --- a/Modules/FindosgWidget.cmake +++ b/Modules/FindosgWidget.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindosgWidget diff --git a/Modules/Findosg_functions.cmake b/Modules/Findosg_functions.cmake index 5226102..9fdeb95 100644 --- a/Modules/Findosg_functions.cmake +++ b/Modules/Findosg_functions.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Findosg_functions diff --git a/Modules/FindwxWidgets.cmake b/Modules/FindwxWidgets.cmake index 84ef567..86f34ee 100644 --- a/Modules/FindwxWidgets.cmake +++ b/Modules/FindwxWidgets.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindwxWidgets diff --git a/Modules/FindwxWindows.cmake b/Modules/FindwxWindows.cmake index 1e345d0..83d6018 100644 --- a/Modules/FindwxWindows.cmake +++ b/Modules/FindwxWindows.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindwxWindows diff --git a/Modules/FortranCInterface.cmake b/Modules/FortranCInterface.cmake index 9a1fbdc..685f310 100644 --- a/Modules/FortranCInterface.cmake +++ b/Modules/FortranCInterface.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FortranCInterface diff --git a/Modules/FortranCInterface/CMakeLists.txt b/Modules/FortranCInterface/CMakeLists.txt index bc33096..c0a9256 100644 --- a/Modules/FortranCInterface/CMakeLists.txt +++ b/Modules/FortranCInterface/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) project(FortranCInterface C Fortran) diff --git a/Modules/FortranCInterface/Detect.cmake b/Modules/FortranCInterface/Detect.cmake index a27f761..177fdf8 100644 --- a/Modules/FortranCInterface/Detect.cmake +++ b/Modules/FortranCInterface/Detect.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. configure_file(${FortranCInterface_SOURCE_DIR}/Input.cmake.in ${FortranCInterface_BINARY_DIR}/Input.cmake @ONLY) diff --git a/Modules/FortranCInterface/Verify/CMakeLists.txt b/Modules/FortranCInterface/Verify/CMakeLists.txt index caf4206..7367968 100644 --- a/Modules/FortranCInterface/Verify/CMakeLists.txt +++ b/Modules/FortranCInterface/Verify/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) project(VerifyFortranC C Fortran) diff --git a/Modules/GNUInstallDirs.cmake b/Modules/GNUInstallDirs.cmake index e0ba140..162c829 100644 --- a/Modules/GNUInstallDirs.cmake +++ b/Modules/GNUInstallDirs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: GNUInstallDirs diff --git a/Modules/GenerateExportHeader.cmake b/Modules/GenerateExportHeader.cmake index 9c369b6..a4e904c 100644 --- a/Modules/GenerateExportHeader.cmake +++ b/Modules/GenerateExportHeader.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: GenerateExportHeader diff --git a/Modules/GetPrerequisites.cmake b/Modules/GetPrerequisites.cmake index f769ebd..4f9d3e7 100644 --- a/Modules/GetPrerequisites.cmake +++ b/Modules/GetPrerequisites.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: GetPrerequisites diff --git a/Modules/GoogleTest.cmake b/Modules/GoogleTest.cmake index 70a98f7..ebf0ba0 100644 --- a/Modules/GoogleTest.cmake +++ b/Modules/GoogleTest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: GoogleTest diff --git a/Modules/GoogleTestAddTests.cmake b/Modules/GoogleTestAddTests.cmake index afed307..3af16f8 100644 --- a/Modules/GoogleTestAddTests.cmake +++ b/Modules/GoogleTestAddTests.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.30) cmake_policy(SET CMP0174 NEW) # TODO: Remove this when we can update the above to 3.31 diff --git a/Modules/ITKCompatibility.cmake b/Modules/ITKCompatibility.cmake index b3d5a6f..36733b3 100644 --- a/Modules/ITKCompatibility.cmake +++ b/Modules/ITKCompatibility.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # work around an old bug in ITK prior to version 3.0 diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index e3e1794..4d7aff3 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: InstallRequiredSystemLibraries diff --git a/Modules/Internal/CMakeASM-ATTLinkerInformation.cmake b/Modules/Internal/CMakeASM-ATTLinkerInformation.cmake index 5e3ae78..150f712 100644 --- a/Modules/Internal/CMakeASM-ATTLinkerInformation.cmake +++ b/Modules/Internal/CMakeASM-ATTLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for AT&T syntax assemblers, e.g. GNU as diff --git a/Modules/Internal/CMakeASMLinkerInformation.cmake b/Modules/Internal/CMakeASMLinkerInformation.cmake index 2d547dc..bbdba62 100644 --- a/Modules/Internal/CMakeASMLinkerInformation.cmake +++ b/Modules/Internal/CMakeASMLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the C compiler in CMake. diff --git a/Modules/Internal/CMakeASM_MARMASMLinkerInformation.cmake b/Modules/Internal/CMakeASM_MARMASMLinkerInformation.cmake index 62497f2..7049623 100644 --- a/Modules/Internal/CMakeASM_MARMASMLinkerInformation.cmake +++ b/Modules/Internal/CMakeASM_MARMASMLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for the MS assembler, masm and masm64 diff --git a/Modules/Internal/CMakeASM_MASMLinkerInformation.cmake b/Modules/Internal/CMakeASM_MASMLinkerInformation.cmake index 62497f2..7049623 100644 --- a/Modules/Internal/CMakeASM_MASMLinkerInformation.cmake +++ b/Modules/Internal/CMakeASM_MASMLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for the MS assembler, masm and masm64 diff --git a/Modules/Internal/CMakeASM_NASMLinkerInformation.cmake b/Modules/Internal/CMakeASM_NASMLinkerInformation.cmake index d48a018..5d00615 100644 --- a/Modules/Internal/CMakeASM_NASMLinkerInformation.cmake +++ b/Modules/Internal/CMakeASM_NASMLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # support for the nasm assembler diff --git a/Modules/Internal/CMakeCLinkerInformation.cmake b/Modules/Internal/CMakeCLinkerInformation.cmake index ddc9827..73b168f 100644 --- a/Modules/Internal/CMakeCLinkerInformation.cmake +++ b/Modules/Internal/CMakeCLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the C compiler in CMake. diff --git a/Modules/Internal/CMakeCUDAArchitecturesAll.cmake b/Modules/Internal/CMakeCUDAArchitecturesAll.cmake index b97a202..e6272b8 100644 --- a/Modules/Internal/CMakeCUDAArchitecturesAll.cmake +++ b/Modules/Internal/CMakeCUDAArchitecturesAll.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # See supported GPUs on Wikipedia # https://en.wikipedia.org/wiki/CUDA#GPUs_supported diff --git a/Modules/Internal/CMakeCUDAArchitecturesNative.cmake b/Modules/Internal/CMakeCUDAArchitecturesNative.cmake index 4185eda..dd43bf3 100644 --- a/Modules/Internal/CMakeCUDAArchitecturesNative.cmake +++ b/Modules/Internal/CMakeCUDAArchitecturesNative.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(cmake_cuda_architectures_native lang) # Run the test binary to detect the native architectures. diff --git a/Modules/Internal/CMakeCUDAArchitecturesValidate.cmake b/Modules/Internal/CMakeCUDAArchitecturesValidate.cmake index b6997d2..ed827ac 100644 --- a/Modules/Internal/CMakeCUDAArchitecturesValidate.cmake +++ b/Modules/Internal/CMakeCUDAArchitecturesValidate.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(cmake_cuda_architectures_validate lang) if(DEFINED CMAKE_${lang}_ARCHITECTURES) diff --git a/Modules/Internal/CMakeCUDAFilterImplicitLibs.cmake b/Modules/Internal/CMakeCUDAFilterImplicitLibs.cmake index 60287af..493b8e2 100644 --- a/Modules/Internal/CMakeCUDAFilterImplicitLibs.cmake +++ b/Modules/Internal/CMakeCUDAFilterImplicitLibs.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # In CMakeDetermineCUDACompiler and CMakeTestCUDACompiler we detect # libraries that the CUDA compiler implicitly passes to the host linker. diff --git a/Modules/Internal/CMakeCUDAFindToolkit.cmake b/Modules/Internal/CMakeCUDAFindToolkit.cmake index 58d1e55..8fd4089 100644 --- a/Modules/Internal/CMakeCUDAFindToolkit.cmake +++ b/Modules/Internal/CMakeCUDAFindToolkit.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. macro(cmake_cuda_find_toolkit lang lang_var_) # This is very similar to FindCUDAToolkit, but somewhat simplified since we can issue fatal errors diff --git a/Modules/Internal/CMakeCUDALinkerInformation.cmake b/Modules/Internal/CMakeCUDALinkerInformation.cmake index 1d375f2..6d256fe 100644 --- a/Modules/Internal/CMakeCUDALinkerInformation.cmake +++ b/Modules/Internal/CMakeCUDALinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the C compiler in CMake. diff --git a/Modules/Internal/CMakeCXXLinkerInformation.cmake b/Modules/Internal/CMakeCXXLinkerInformation.cmake index 2398b50..cedc6ad 100644 --- a/Modules/Internal/CMakeCXXLinkerInformation.cmake +++ b/Modules/Internal/CMakeCXXLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the C++ compiler in CMake. diff --git a/Modules/Internal/CMakeCommonLinkerInformation.cmake b/Modules/Internal/CMakeCommonLinkerInformation.cmake index 245e068..2815e3f 100644 --- a/Modules/Internal/CMakeCommonLinkerInformation.cmake +++ b/Modules/Internal/CMakeCommonLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file contains common code blocks used by all the linker information diff --git a/Modules/Internal/CMakeDetermineLinkerId.cmake b/Modules/Internal/CMakeDetermineLinkerId.cmake index 3539428..2b17036 100644 --- a/Modules/Internal/CMakeDetermineLinkerId.cmake +++ b/Modules/Internal/CMakeDetermineLinkerId.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Function to identify the linker. This is used internally by CMake and should # not be included by user code. diff --git a/Modules/Internal/CMakeFortranLinkerInformation.cmake b/Modules/Internal/CMakeFortranLinkerInformation.cmake index cddd0e9..05fa352 100644 --- a/Modules/Internal/CMakeFortranLinkerInformation.cmake +++ b/Modules/Internal/CMakeFortranLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the C compiler in CMake. diff --git a/Modules/Internal/CMakeHIPLinkerInformation.cmake b/Modules/Internal/CMakeHIPLinkerInformation.cmake index e996889..e1531ef 100644 --- a/Modules/Internal/CMakeHIPLinkerInformation.cmake +++ b/Modules/Internal/CMakeHIPLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the C compiler in CMake. diff --git a/Modules/Internal/CMakeNVCCFilterImplicitInfo.cmake b/Modules/Internal/CMakeNVCCFilterImplicitInfo.cmake index dee7580..54b5b9c 100644 --- a/Modules/Internal/CMakeNVCCFilterImplicitInfo.cmake +++ b/Modules/Internal/CMakeNVCCFilterImplicitInfo.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. macro(cmake_nvcc_filter_implicit_info lang lang_var_) # Remove the CUDA Toolkit include directories from the set of diff --git a/Modules/Internal/CMakeNVCCParseImplicitInfo.cmake b/Modules/Internal/CMakeNVCCParseImplicitInfo.cmake index 3aa10a2..18e1e82 100644 --- a/Modules/Internal/CMakeNVCCParseImplicitInfo.cmake +++ b/Modules/Internal/CMakeNVCCParseImplicitInfo.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. macro(cmake_nvcc_parse_implicit_info lang lang_var_) set(_nvcc_log "") diff --git a/Modules/Internal/CMakeOBJCLinkerInformation.cmake b/Modules/Internal/CMakeOBJCLinkerInformation.cmake index a26fa42..5768c66 100644 --- a/Modules/Internal/CMakeOBJCLinkerInformation.cmake +++ b/Modules/Internal/CMakeOBJCLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the Objective-C compiler in CMake. diff --git a/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake b/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake index d61dd1a..e4f69c4 100644 --- a/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake +++ b/Modules/Internal/CMakeOBJCXXLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the Objective-C++ compiler in CMake. diff --git a/Modules/Internal/CMakeSwiftLinkerInformation.cmake b/Modules/Internal/CMakeSwiftLinkerInformation.cmake index f3a1d07..3e21797 100644 --- a/Modules/Internal/CMakeSwiftLinkerInformation.cmake +++ b/Modules/Internal/CMakeSwiftLinkerInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This file sets the basic flags for the linker used by the Swift compiler in CMake. diff --git a/Modules/Internal/CMakeTryCompilerOrLinkerFlag.cmake b/Modules/Internal/CMakeTryCompilerOrLinkerFlag.cmake index b671b4a..e5523b2 100644 --- a/Modules/Internal/CMakeTryCompilerOrLinkerFlag.cmake +++ b/Modules/Internal/CMakeTryCompilerOrLinkerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=[ diff --git a/Modules/Internal/CPack/CPackDeb.cmake b/Modules/Internal/CPack/CPackDeb.cmake index 832a690..873c7bc 100644 --- a/Modules/Internal/CPack/CPackDeb.cmake +++ b/Modules/Internal/CPack/CPackDeb.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # CPack script for creating Debian package # Author: Mathieu Malaterre diff --git a/Modules/Internal/CPack/CPackExternal.cmake b/Modules/Internal/CPack/CPackExternal.cmake index e4d055a..4736a99 100644 --- a/Modules/Internal/CPack/CPackExternal.cmake +++ b/Modules/Internal/CPack/CPackExternal.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT "${CPACK_EXTERNAL_REQUESTED_VERSIONS}" STREQUAL "") unset(_found_major) diff --git a/Modules/Internal/CPack/CPackFreeBSD.cmake b/Modules/Internal/CPack/CPackFreeBSD.cmake index 46a7bf7..cfe22ed 100644 --- a/Modules/Internal/CPack/CPackFreeBSD.cmake +++ b/Modules/Internal/CPack/CPackFreeBSD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_BINARY_DIR) diff --git a/Modules/Internal/CPack/CPackNuGet.cmake b/Modules/Internal/CPack/CPackNuGet.cmake index 83a8f43..9b6cc91 100644 --- a/Modules/Internal/CPack/CPackNuGet.cmake +++ b/Modules/Internal/CPack/CPackNuGet.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Author: Alex Turbov diff --git a/Modules/Internal/CPack/CPackRPM.cmake b/Modules/Internal/CPack/CPackRPM.cmake index dcc575f..7776ee2 100644 --- a/Modules/Internal/CPack/CPackRPM.cmake +++ b/Modules/Internal/CPack/CPackRPM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Author: Eric Noulard with the help of Alexander Neundorf. diff --git a/Modules/Internal/CPack/CPackWIX.cmake b/Modules/Internal/CPack/CPackWIX.cmake index 9980bc2..4fdf17c 100644 --- a/Modules/Internal/CPack/CPackWIX.cmake +++ b/Modules/Internal/CPack/CPackWIX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT CPACK_WIX_ROOT) string(REPLACE "\\" "/" CPACK_WIX_ROOT "$ENV{WIX}") diff --git a/Modules/Internal/CPack/CPackZIP.cmake b/Modules/Internal/CPack/CPackZIP.cmake index f619de4..06fa375 100644 --- a/Modules/Internal/CPack/CPackZIP.cmake +++ b/Modules/Internal/CPack/CPackZIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_BINARY_DIR) diff --git a/Modules/Internal/CPack/ISComponents.pas b/Modules/Internal/CPack/ISComponents.pas index 8b5c8b4..cfcbe4f 100644 --- a/Modules/Internal/CPack/ISComponents.pas +++ b/Modules/Internal/CPack/ISComponents.pas @@ -1,5 +1,5 @@ { Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. } +file LICENSE.rst or https://cmake.org/licensing for details. } function CPackGetCustomInstallationMessage(Param: String): String; begin diff --git a/Modules/Internal/CheckCompilerFlag.cmake b/Modules/Internal/CheckCompilerFlag.cmake index 910f426..341b969 100644 --- a/Modules/Internal/CheckCompilerFlag.cmake +++ b/Modules/Internal/CheckCompilerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) include(Internal/CheckFlagCommonConfig) diff --git a/Modules/Internal/CheckFlagCommonConfig.cmake b/Modules/Internal/CheckFlagCommonConfig.cmake index 1bb534d..3403c1d 100644 --- a/Modules/Internal/CheckFlagCommonConfig.cmake +++ b/Modules/Internal/CheckFlagCommonConfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Do NOT include this module directly into any of your code. It is meant as diff --git a/Modules/Internal/CheckLinkerFlag.cmake b/Modules/Internal/CheckLinkerFlag.cmake index afd53dc..64fdff8 100644 --- a/Modules/Internal/CheckLinkerFlag.cmake +++ b/Modules/Internal/CheckLinkerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) include(Internal/CheckFlagCommonConfig) diff --git a/Modules/Internal/CheckSourceCompiles.cmake b/Modules/Internal/CheckSourceCompiles.cmake index a92ddbb..e5c0ef1 100644 --- a/Modules/Internal/CheckSourceCompiles.cmake +++ b/Modules/Internal/CheckSourceCompiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) diff --git a/Modules/Internal/CheckSourceRuns.cmake b/Modules/Internal/CheckSourceRuns.cmake index 8bdd792..5df37e0 100644 --- a/Modules/Internal/CheckSourceRuns.cmake +++ b/Modules/Internal/CheckSourceRuns.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) diff --git a/Modules/Internal/HeaderpadWorkaround.cmake b/Modules/Internal/HeaderpadWorkaround.cmake index 6a13e69..0555ded 100644 --- a/Modules/Internal/HeaderpadWorkaround.cmake +++ b/Modules/Internal/HeaderpadWorkaround.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Do NOT include this module directly into any of your code. It is used by diff --git a/Modules/Internal/OSRelease/010-TryOldCentOS.cmake b/Modules/Internal/OSRelease/010-TryOldCentOS.cmake index ff35897..a73c4d0 100644 --- a/Modules/Internal/OSRelease/010-TryOldCentOS.cmake +++ b/Modules/Internal/OSRelease/010-TryOldCentOS.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Author: Alex Turbov diff --git a/Modules/Internal/OSRelease/020-TryDebianVersion.cmake b/Modules/Internal/OSRelease/020-TryDebianVersion.cmake index 8ebe19a..8e46193 100644 --- a/Modules/Internal/OSRelease/020-TryDebianVersion.cmake +++ b/Modules/Internal/OSRelease/020-TryDebianVersion.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Author: Alex Turbov diff --git a/Modules/KDE3Macros.cmake b/Modules/KDE3Macros.cmake index 787ce0f..da65561 100644 --- a/Modules/KDE3Macros.cmake +++ b/Modules/KDE3Macros.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # diff --git a/Modules/Linker/AIX-ASM.cmake b/Modules/Linker/AIX-ASM.cmake index 0c748fc..20c7974 100644 --- a/Modules/Linker/AIX-ASM.cmake +++ b/Modules/Linker/AIX-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/AIX) diff --git a/Modules/Linker/AIX-C.cmake b/Modules/Linker/AIX-C.cmake index c1bfd45..bddcca2 100644 --- a/Modules/Linker/AIX-C.cmake +++ b/Modules/Linker/AIX-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/AIX) diff --git a/Modules/Linker/AIX-CXX.cmake b/Modules/Linker/AIX-CXX.cmake index 34cdf20..0a8ed72 100644 --- a/Modules/Linker/AIX-CXX.cmake +++ b/Modules/Linker/AIX-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/AIX) diff --git a/Modules/Linker/AIX-Fortran.cmake b/Modules/Linker/AIX-Fortran.cmake index cf74076..badf1e6 100644 --- a/Modules/Linker/AIX-Fortran.cmake +++ b/Modules/Linker/AIX-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/AIX) diff --git a/Modules/Linker/AIX.cmake b/Modules/Linker/AIX.cmake index 91a9530..e4ac586 100644 --- a/Modules/Linker/AIX.cmake +++ b/Modules/Linker/AIX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/Linker/AppleClang.cmake b/Modules/Linker/AppleClang.cmake index c31f1f0..0dff63c 100644 --- a/Modules/Linker/AppleClang.cmake +++ b/Modules/Linker/AppleClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/Linker/GNU-ASM.cmake b/Modules/Linker/GNU-ASM.cmake index d927106..68f46c0 100644 --- a/Modules/Linker/GNU-ASM.cmake +++ b/Modules/Linker/GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNU) diff --git a/Modules/Linker/GNU-C.cmake b/Modules/Linker/GNU-C.cmake index 9a19e7d..8d641de 100644 --- a/Modules/Linker/GNU-C.cmake +++ b/Modules/Linker/GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNU) diff --git a/Modules/Linker/GNU-CUDA.cmake b/Modules/Linker/GNU-CUDA.cmake index 82e887f..5bde83d 100644 --- a/Modules/Linker/GNU-CUDA.cmake +++ b/Modules/Linker/GNU-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNU) diff --git a/Modules/Linker/GNU-CXX.cmake b/Modules/Linker/GNU-CXX.cmake index 6b4d719..cec3767 100644 --- a/Modules/Linker/GNU-CXX.cmake +++ b/Modules/Linker/GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNU) diff --git a/Modules/Linker/GNU-Fortran.cmake b/Modules/Linker/GNU-Fortran.cmake index b4f688a..a671b10 100644 --- a/Modules/Linker/GNU-Fortran.cmake +++ b/Modules/Linker/GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNU) diff --git a/Modules/Linker/GNU-HIP.cmake b/Modules/Linker/GNU-HIP.cmake index b2d0b2e..1ea4195 100644 --- a/Modules/Linker/GNU-HIP.cmake +++ b/Modules/Linker/GNU-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNU) diff --git a/Modules/Linker/GNU.cmake b/Modules/Linker/GNU.cmake index ba1d030..2ac5ea6 100644 --- a/Modules/Linker/GNU.cmake +++ b/Modules/Linker/GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/Linker/GNUgold-ASM.cmake b/Modules/Linker/GNUgold-ASM.cmake index 9f920e5..39071c3 100644 --- a/Modules/Linker/GNUgold-ASM.cmake +++ b/Modules/Linker/GNUgold-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNUgold) diff --git a/Modules/Linker/GNUgold-C.cmake b/Modules/Linker/GNUgold-C.cmake index a510626..62fedd2 100644 --- a/Modules/Linker/GNUgold-C.cmake +++ b/Modules/Linker/GNUgold-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNUgold) diff --git a/Modules/Linker/GNUgold-CUDA.cmake b/Modules/Linker/GNUgold-CUDA.cmake index 9cd52e0..ed32603 100644 --- a/Modules/Linker/GNUgold-CUDA.cmake +++ b/Modules/Linker/GNUgold-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNUgold) diff --git a/Modules/Linker/GNUgold-CXX.cmake b/Modules/Linker/GNUgold-CXX.cmake index eeb624b..6cda1e6 100644 --- a/Modules/Linker/GNUgold-CXX.cmake +++ b/Modules/Linker/GNUgold-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNUgold) diff --git a/Modules/Linker/GNUgold-Fortran.cmake b/Modules/Linker/GNUgold-Fortran.cmake index 97298ed..28d16d7 100644 --- a/Modules/Linker/GNUgold-Fortran.cmake +++ b/Modules/Linker/GNUgold-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNUgold) diff --git a/Modules/Linker/GNUgold-HIP.cmake b/Modules/Linker/GNUgold-HIP.cmake index 900b9aa..bfd24c6 100644 --- a/Modules/Linker/GNUgold-HIP.cmake +++ b/Modules/Linker/GNUgold-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/GNUgold) diff --git a/Modules/Linker/GNUgold.cmake b/Modules/Linker/GNUgold.cmake index 4680564..ad20064 100644 --- a/Modules/Linker/GNUgold.cmake +++ b/Modules/Linker/GNUgold.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/Linker/LLD-ASM.cmake b/Modules/Linker/LLD-ASM.cmake index 255f8c5..c138410 100644 --- a/Modules/Linker/LLD-ASM.cmake +++ b/Modules/Linker/LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-C.cmake b/Modules/Linker/LLD-C.cmake index d3036b0..825918f 100644 --- a/Modules/Linker/LLD-C.cmake +++ b/Modules/Linker/LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-CUDA.cmake b/Modules/Linker/LLD-CUDA.cmake index aa72413..11f6670 100644 --- a/Modules/Linker/LLD-CUDA.cmake +++ b/Modules/Linker/LLD-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-CXX.cmake b/Modules/Linker/LLD-CXX.cmake index 0a0d2de..f459d78 100644 --- a/Modules/Linker/LLD-CXX.cmake +++ b/Modules/Linker/LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-Fortran.cmake b/Modules/Linker/LLD-Fortran.cmake index babcd9a..e39c4f8 100644 --- a/Modules/Linker/LLD-Fortran.cmake +++ b/Modules/Linker/LLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-HIP.cmake b/Modules/Linker/LLD-HIP.cmake index 8535830..b343f23 100644 --- a/Modules/Linker/LLD-HIP.cmake +++ b/Modules/Linker/LLD-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-OBJC.cmake b/Modules/Linker/LLD-OBJC.cmake index 7a2af76..d9c4ffd 100644 --- a/Modules/Linker/LLD-OBJC.cmake +++ b/Modules/Linker/LLD-OBJC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD-OBJCXX.cmake b/Modules/Linker/LLD-OBJCXX.cmake index 2361e90..36021be 100644 --- a/Modules/Linker/LLD-OBJCXX.cmake +++ b/Modules/Linker/LLD-OBJCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/LLD) diff --git a/Modules/Linker/LLD.cmake b/Modules/Linker/LLD.cmake index 4d96730..012b6f1 100644 --- a/Modules/Linker/LLD.cmake +++ b/Modules/Linker/LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard() diff --git a/Modules/Linker/MOLD-ASM.cmake b/Modules/Linker/MOLD-ASM.cmake index 16179f5..d32cf49 100644 --- a/Modules/Linker/MOLD-ASM.cmake +++ b/Modules/Linker/MOLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-C.cmake b/Modules/Linker/MOLD-C.cmake index d26e75f..ee866ac 100644 --- a/Modules/Linker/MOLD-C.cmake +++ b/Modules/Linker/MOLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-CUDA.cmake b/Modules/Linker/MOLD-CUDA.cmake index 8267064..d64476c 100644 --- a/Modules/Linker/MOLD-CUDA.cmake +++ b/Modules/Linker/MOLD-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-CXX.cmake b/Modules/Linker/MOLD-CXX.cmake index 399d302..c5a6318 100644 --- a/Modules/Linker/MOLD-CXX.cmake +++ b/Modules/Linker/MOLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-Fortran.cmake b/Modules/Linker/MOLD-Fortran.cmake index 3aee849..f85dfde 100644 --- a/Modules/Linker/MOLD-Fortran.cmake +++ b/Modules/Linker/MOLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-HIP.cmake b/Modules/Linker/MOLD-HIP.cmake index fd42b42..49f2a21 100644 --- a/Modules/Linker/MOLD-HIP.cmake +++ b/Modules/Linker/MOLD-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-OBJC.cmake b/Modules/Linker/MOLD-OBJC.cmake index 915f6c1..f35b97b 100644 --- a/Modules/Linker/MOLD-OBJC.cmake +++ b/Modules/Linker/MOLD-OBJC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD-OBJCXX.cmake b/Modules/Linker/MOLD-OBJCXX.cmake index 80eafe1..7980b6d 100644 --- a/Modules/Linker/MOLD-OBJCXX.cmake +++ b/Modules/Linker/MOLD-OBJCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MOLD) diff --git a/Modules/Linker/MOLD.cmake b/Modules/Linker/MOLD.cmake index 0a9c65b..fb2d5d3 100644 --- a/Modules/Linker/MOLD.cmake +++ b/Modules/Linker/MOLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/Linker/MSVC-ASM.cmake b/Modules/Linker/MSVC-ASM.cmake index e224275..b34107e 100644 --- a/Modules/Linker/MSVC-ASM.cmake +++ b/Modules/Linker/MSVC-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MSVC) diff --git a/Modules/Linker/MSVC-C.cmake b/Modules/Linker/MSVC-C.cmake index c1821d1..a0ea96f 100644 --- a/Modules/Linker/MSVC-C.cmake +++ b/Modules/Linker/MSVC-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MSVC) diff --git a/Modules/Linker/MSVC-CUDA.cmake b/Modules/Linker/MSVC-CUDA.cmake index 2ca5eb4..3a56713 100644 --- a/Modules/Linker/MSVC-CUDA.cmake +++ b/Modules/Linker/MSVC-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MSVC) diff --git a/Modules/Linker/MSVC-CXX.cmake b/Modules/Linker/MSVC-CXX.cmake index 243af23..6bc459a 100644 --- a/Modules/Linker/MSVC-CXX.cmake +++ b/Modules/Linker/MSVC-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MSVC) diff --git a/Modules/Linker/MSVC-Fortran.cmake b/Modules/Linker/MSVC-Fortran.cmake index da02a1d..57b3a5d 100644 --- a/Modules/Linker/MSVC-Fortran.cmake +++ b/Modules/Linker/MSVC-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MSVC) diff --git a/Modules/Linker/MSVC-HIP.cmake b/Modules/Linker/MSVC-HIP.cmake index c770b9e..7b1c637 100644 --- a/Modules/Linker/MSVC-HIP.cmake +++ b/Modules/Linker/MSVC-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/MSVC) diff --git a/Modules/Linker/MSVC.cmake b/Modules/Linker/MSVC.cmake index 16273a3..c6e2269 100644 --- a/Modules/Linker/MSVC.cmake +++ b/Modules/Linker/MSVC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/Linker/Solaris-ASM.cmake b/Modules/Linker/Solaris-ASM.cmake index 2bcdd71..a525e80 100644 --- a/Modules/Linker/Solaris-ASM.cmake +++ b/Modules/Linker/Solaris-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/Solaris) diff --git a/Modules/Linker/Solaris-C.cmake b/Modules/Linker/Solaris-C.cmake index 23458d5..8d00a71 100644 --- a/Modules/Linker/Solaris-C.cmake +++ b/Modules/Linker/Solaris-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/Solaris) diff --git a/Modules/Linker/Solaris-CXX.cmake b/Modules/Linker/Solaris-CXX.cmake index 8ddf909..f4376e5 100644 --- a/Modules/Linker/Solaris-CXX.cmake +++ b/Modules/Linker/Solaris-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/Solaris) diff --git a/Modules/Linker/Solaris-Fortran.cmake b/Modules/Linker/Solaris-Fortran.cmake index 111cf11..ad43d05 100644 --- a/Modules/Linker/Solaris-Fortran.cmake +++ b/Modules/Linker/Solaris-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Linker/Solaris) diff --git a/Modules/Linker/Solaris.cmake b/Modules/Linker/Solaris.cmake index e24365c..c85caab 100644 --- a/Modules/Linker/Solaris.cmake +++ b/Modules/Linker/Solaris.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple linkers; use include blocker. diff --git a/Modules/MacroAddFileDependencies.cmake b/Modules/MacroAddFileDependencies.cmake index 6a87955..80f7b32 100644 --- a/Modules/MacroAddFileDependencies.cmake +++ b/Modules/MacroAddFileDependencies.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: MacroAddFileDependencies diff --git a/Modules/MatlabTestsRedirect.cmake b/Modules/MatlabTestsRedirect.cmake index 8973231..a52ff02 100644 --- a/Modules/MatlabTestsRedirect.cmake +++ b/Modules/MatlabTestsRedirect.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This is an undocumented internal helper for the FindMatlab # module ``matlab_add_unit_test`` command. diff --git a/Modules/Platform/AIX-GNU.cmake b/Modules/Platform/AIX-GNU.cmake index 459bc04..111aa83 100644 --- a/Modules/Platform/AIX-GNU.cmake +++ b/Modules/Platform/AIX-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/AIX-IBMClang.cmake b/Modules/Platform/AIX-IBMClang.cmake index 4e5205e..471e20e 100644 --- a/Modules/Platform/AIX-IBMClang.cmake +++ b/Modules/Platform/AIX-IBMClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/AIX-XL.cmake b/Modules/Platform/AIX-XL.cmake index 59eb203..24477ce 100644 --- a/Modules/Platform/AIX-XL.cmake +++ b/Modules/Platform/AIX-XL.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/AIX-XLClang.cmake b/Modules/Platform/AIX-XLClang.cmake index c932095..b6df732 100644 --- a/Modules/Platform/AIX-XLClang.cmake +++ b/Modules/Platform/AIX-XLClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/AIX/ExportImportList b/Modules/Platform/AIX/ExportImportList index 7c269fd..d8dd5e9 100755 --- a/Modules/Platform/AIX/ExportImportList +++ b/Modules/Platform/AIX/ExportImportList @@ -1,6 +1,6 @@ #!/bin/sh # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This script is internal to CMake and meant only to be # invoked by CMake-generated build systems on AIX. diff --git a/Modules/Platform/Android-Clang.cmake b/Modules/Platform/Android-Clang.cmake index aaaae9b..d4be244 100644 --- a/Modules/Platform/Android-Clang.cmake +++ b/Modules/Platform/Android-Clang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__ANDROID_COMPILER_CLANG) diff --git a/Modules/Platform/Android-Common.cmake b/Modules/Platform/Android-Common.cmake index f1deaca..60e1617 100644 --- a/Modules/Platform/Android-Common.cmake +++ b/Modules/Platform/Android-Common.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__ANDROID_COMPILER_COMMON) diff --git a/Modules/Platform/Android-Determine.cmake b/Modules/Platform/Android-Determine.cmake index 23c8a18..ff4290e 100644 --- a/Modules/Platform/Android-Determine.cmake +++ b/Modules/Platform/Android-Determine.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # When CMAKE_SYSTEM_NAME is "Android", CMakeDetermineSystem loads this module. # This module detects platform-wide information about the Android target diff --git a/Modules/Platform/Android-GNU.cmake b/Modules/Platform/Android-GNU.cmake index e1f79ca..eb02024 100644 --- a/Modules/Platform/Android-GNU.cmake +++ b/Modules/Platform/Android-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__ANDROID_COMPILER_GNU) diff --git a/Modules/Platform/Android-Initialize.cmake b/Modules/Platform/Android-Initialize.cmake index e2b2bd5..75851ac 100644 --- a/Modules/Platform/Android-Initialize.cmake +++ b/Modules/Platform/Android-Initialize.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # When CMAKE_SYSTEM_NAME is "Android", CMakeSystemSpecificInitialize loads this # module. diff --git a/Modules/Platform/Android/Determine-Compiler-NDK.cmake b/Modules/Platform/Android/Determine-Compiler-NDK.cmake index 4e58d69..3e94f1c 100644 --- a/Modules/Platform/Android/Determine-Compiler-NDK.cmake +++ b/Modules/Platform/Android/Determine-Compiler-NDK.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # In Android NDK r19 and above there is a single clang toolchain. if(CMAKE_ANDROID_NDK_TOOLCHAIN_UNIFIED) diff --git a/Modules/Platform/Android/Determine-Compiler-Standalone.cmake b/Modules/Platform/Android/Determine-Compiler-Standalone.cmake index 5095aff..2da1ad3 100644 --- a/Modules/Platform/Android/Determine-Compiler-Standalone.cmake +++ b/Modules/Platform/Android/Determine-Compiler-Standalone.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set(_ANDROID_TOOL_C_COMPILER "") set(_ANDROID_TOOL_CXX_COMPILER "") diff --git a/Modules/Platform/Android/Determine-Compiler.cmake b/Modules/Platform/Android/Determine-Compiler.cmake index f8eae62..bbc3b82 100644 --- a/Modules/Platform/Android/Determine-Compiler.cmake +++ b/Modules/Platform/Android/Determine-Compiler.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. if(__ANDROID_DETERMINE_COMPILER) diff --git a/Modules/Platform/Apple-Absoft-Fortran.cmake b/Modules/Platform/Apple-Absoft-Fortran.cmake index 8caa202..b928321 100644 --- a/Modules/Platform/Apple-Absoft-Fortran.cmake +++ b/Modules/Platform/Apple-Absoft-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set(CMAKE_Fortran_VERBOSE_FLAG "-X -v") # Runs gcc under the hood. diff --git a/Modules/Platform/Apple-Clang.cmake b/Modules/Platform/Apple-Clang.cmake index 83357a7..8cffe3f 100644 --- a/Modules/Platform/Apple-Clang.cmake +++ b/Modules/Platform/Apple-Clang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Apple-GNU-Fortran.cmake b/Modules/Platform/Apple-GNU-Fortran.cmake index 2f53603..481f729 100644 --- a/Modules/Platform/Apple-GNU-Fortran.cmake +++ b/Modules/Platform/Apple-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Apple-GNU) __apple_compiler_gnu(Fortran) diff --git a/Modules/Platform/Apple-GNU.cmake b/Modules/Platform/Apple-GNU.cmake index bc4147e..69ccb40 100644 --- a/Modules/Platform/Apple-GNU.cmake +++ b/Modules/Platform/Apple-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Apple-Intel-Fortran.cmake b/Modules/Platform/Apple-Intel-Fortran.cmake index e54e237..6f41d08 100644 --- a/Modules/Platform/Apple-Intel-Fortran.cmake +++ b/Modules/Platform/Apple-Intel-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Apple-Intel) __apple_compiler_intel(Fortran) diff --git a/Modules/Platform/Apple-Intel.cmake b/Modules/Platform/Apple-Intel.cmake index a854be9..3bab6a5 100644 --- a/Modules/Platform/Apple-Intel.cmake +++ b/Modules/Platform/Apple-Intel.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Apple-IntelLLVM-Fortran.cmake b/Modules/Platform/Apple-IntelLLVM-Fortran.cmake index d0486ed..4852c02 100644 --- a/Modules/Platform/Apple-IntelLLVM-Fortran.cmake +++ b/Modules/Platform/Apple-IntelLLVM-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Apple-IntelLLVM) __apple_compiler_intel_llvm(Fortran) diff --git a/Modules/Platform/Apple-IntelLLVM.cmake b/Modules/Platform/Apple-IntelLLVM.cmake index 2f9f0ca..2d0ce71 100644 --- a/Modules/Platform/Apple-IntelLLVM.cmake +++ b/Modules/Platform/Apple-IntelLLVM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Apple-NAG-Fortran.cmake b/Modules/Platform/Apple-NAG-Fortran.cmake index 828d7ab..41dd55b 100644 --- a/Modules/Platform/Apple-NAG-Fortran.cmake +++ b/Modules/Platform/Apple-NAG-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set(CMAKE_Fortran_VERBOSE_FLAG "-Wl,-v") # Runs gcc under the hood. diff --git a/Modules/Platform/Apple-PGI.cmake b/Modules/Platform/Apple-PGI.cmake index 8d343b7..5a5718d 100644 --- a/Modules/Platform/Apple-PGI.cmake +++ b/Modules/Platform/Apple-PGI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. include_guard() diff --git a/Modules/Platform/BlueGeneP-base.cmake b/Modules/Platform/BlueGeneP-base.cmake index 3c06215..86078d7 100644 --- a/Modules/Platform/BlueGeneP-base.cmake +++ b/Modules/Platform/BlueGeneP-base.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # diff --git a/Modules/Platform/BlueGeneP-dynamic-GNU-C.cmake b/Modules/Platform/BlueGeneP-dynamic-GNU-C.cmake index 3491870..fd3e84a 100644 --- a/Modules/Platform/BlueGeneP-dynamic-GNU-C.cmake +++ b/Modules/Platform/BlueGeneP-dynamic-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_dynamic_flags(GNU C) diff --git a/Modules/Platform/BlueGeneP-dynamic-GNU-CXX.cmake b/Modules/Platform/BlueGeneP-dynamic-GNU-CXX.cmake index d3c946b..caadba9 100644 --- a/Modules/Platform/BlueGeneP-dynamic-GNU-CXX.cmake +++ b/Modules/Platform/BlueGeneP-dynamic-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_dynamic_flags(GNU CXX) diff --git a/Modules/Platform/BlueGeneP-dynamic-GNU-Fortran.cmake b/Modules/Platform/BlueGeneP-dynamic-GNU-Fortran.cmake index 9db75be..48f5d7a 100644 --- a/Modules/Platform/BlueGeneP-dynamic-GNU-Fortran.cmake +++ b/Modules/Platform/BlueGeneP-dynamic-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_dynamic_flags(GNU Fortran) diff --git a/Modules/Platform/BlueGeneP-dynamic-XL-C.cmake b/Modules/Platform/BlueGeneP-dynamic-XL-C.cmake index 918ee70..832a60b 100644 --- a/Modules/Platform/BlueGeneP-dynamic-XL-C.cmake +++ b/Modules/Platform/BlueGeneP-dynamic-XL-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_dynamic_flags(XL C) diff --git a/Modules/Platform/BlueGeneP-dynamic-XL-CXX.cmake b/Modules/Platform/BlueGeneP-dynamic-XL-CXX.cmake index cfefb0b..f5723e1 100644 --- a/Modules/Platform/BlueGeneP-dynamic-XL-CXX.cmake +++ b/Modules/Platform/BlueGeneP-dynamic-XL-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_dynamic_flags(XL CXX) diff --git a/Modules/Platform/BlueGeneP-dynamic-XL-Fortran.cmake b/Modules/Platform/BlueGeneP-dynamic-XL-Fortran.cmake index 9c295bd..6b0e0ab 100644 --- a/Modules/Platform/BlueGeneP-dynamic-XL-Fortran.cmake +++ b/Modules/Platform/BlueGeneP-dynamic-XL-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_dynamic_flags(XL Fortran) diff --git a/Modules/Platform/BlueGeneP-dynamic.cmake b/Modules/Platform/BlueGeneP-dynamic.cmake index daebab3..e0bf247 100644 --- a/Modules/Platform/BlueGeneP-dynamic.cmake +++ b/Modules/Platform/BlueGeneP-dynamic.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/BlueGeneP-base) diff --git a/Modules/Platform/BlueGeneP-static-GNU-C.cmake b/Modules/Platform/BlueGeneP-static-GNU-C.cmake index 7c60794..f0e239c 100644 --- a/Modules/Platform/BlueGeneP-static-GNU-C.cmake +++ b/Modules/Platform/BlueGeneP-static-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_static_flags(GNU C) diff --git a/Modules/Platform/BlueGeneP-static-GNU-CXX.cmake b/Modules/Platform/BlueGeneP-static-GNU-CXX.cmake index edceaad..bd40d58 100644 --- a/Modules/Platform/BlueGeneP-static-GNU-CXX.cmake +++ b/Modules/Platform/BlueGeneP-static-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_static_flags(GNU CXX) diff --git a/Modules/Platform/BlueGeneP-static-GNU-Fortran.cmake b/Modules/Platform/BlueGeneP-static-GNU-Fortran.cmake index 6b2265a..ad3d6cc 100644 --- a/Modules/Platform/BlueGeneP-static-GNU-Fortran.cmake +++ b/Modules/Platform/BlueGeneP-static-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_static_flags(GNU Fortran) diff --git a/Modules/Platform/BlueGeneP-static-XL-C.cmake b/Modules/Platform/BlueGeneP-static-XL-C.cmake index 7d4fc13..4ebfb2b 100644 --- a/Modules/Platform/BlueGeneP-static-XL-C.cmake +++ b/Modules/Platform/BlueGeneP-static-XL-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_static_flags(XL C) diff --git a/Modules/Platform/BlueGeneP-static-XL-CXX.cmake b/Modules/Platform/BlueGeneP-static-XL-CXX.cmake index 1df276e..1e48ce8 100644 --- a/Modules/Platform/BlueGeneP-static-XL-CXX.cmake +++ b/Modules/Platform/BlueGeneP-static-XL-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_static_flags(XL CXX) diff --git a/Modules/Platform/BlueGeneP-static-XL-Fortran.cmake b/Modules/Platform/BlueGeneP-static-XL-Fortran.cmake index 2bdb6d9..3dc136b 100644 --- a/Modules/Platform/BlueGeneP-static-XL-Fortran.cmake +++ b/Modules/Platform/BlueGeneP-static-XL-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneP_set_static_flags(XL Fortran) diff --git a/Modules/Platform/BlueGeneP-static.cmake b/Modules/Platform/BlueGeneP-static.cmake index 3675ed2..9ee5888 100644 --- a/Modules/Platform/BlueGeneP-static.cmake +++ b/Modules/Platform/BlueGeneP-static.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/BlueGeneP-base) diff --git a/Modules/Platform/BlueGeneQ-base.cmake b/Modules/Platform/BlueGeneQ-base.cmake index ea4b789..555da9d 100644 --- a/Modules/Platform/BlueGeneQ-base.cmake +++ b/Modules/Platform/BlueGeneQ-base.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # diff --git a/Modules/Platform/BlueGeneQ-dynamic-GNU-C.cmake b/Modules/Platform/BlueGeneQ-dynamic-GNU-C.cmake index 6758304..f4948e3 100644 --- a/Modules/Platform/BlueGeneQ-dynamic-GNU-C.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_dynamic(GNU C) diff --git a/Modules/Platform/BlueGeneQ-dynamic-GNU-CXX.cmake b/Modules/Platform/BlueGeneQ-dynamic-GNU-CXX.cmake index 5d40f9f..a6f19f5 100644 --- a/Modules/Platform/BlueGeneQ-dynamic-GNU-CXX.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_dynamic(GNU CXX) diff --git a/Modules/Platform/BlueGeneQ-dynamic-GNU-Fortran.cmake b/Modules/Platform/BlueGeneQ-dynamic-GNU-Fortran.cmake index 6105999..4d8a382 100644 --- a/Modules/Platform/BlueGeneQ-dynamic-GNU-Fortran.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_dynamic(GNU Fortran) diff --git a/Modules/Platform/BlueGeneQ-dynamic-XL-C.cmake b/Modules/Platform/BlueGeneQ-dynamic-XL-C.cmake index c51dacb..679cdd7 100644 --- a/Modules/Platform/BlueGeneQ-dynamic-XL-C.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic-XL-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_dynamic(XL C) diff --git a/Modules/Platform/BlueGeneQ-dynamic-XL-CXX.cmake b/Modules/Platform/BlueGeneQ-dynamic-XL-CXX.cmake index 5dbc836..79b9730 100644 --- a/Modules/Platform/BlueGeneQ-dynamic-XL-CXX.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic-XL-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_dynamic(XL CXX) diff --git a/Modules/Platform/BlueGeneQ-dynamic-XL-Fortran.cmake b/Modules/Platform/BlueGeneQ-dynamic-XL-Fortran.cmake index a6ac03b..503ff7e 100644 --- a/Modules/Platform/BlueGeneQ-dynamic-XL-Fortran.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic-XL-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_dynamic(XL Fortran) diff --git a/Modules/Platform/BlueGeneQ-dynamic.cmake b/Modules/Platform/BlueGeneQ-dynamic.cmake index 9440a3e..a5b5be7 100644 --- a/Modules/Platform/BlueGeneQ-dynamic.cmake +++ b/Modules/Platform/BlueGeneQ-dynamic.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/BlueGeneQ-base) diff --git a/Modules/Platform/BlueGeneQ-static-GNU-C.cmake b/Modules/Platform/BlueGeneQ-static-GNU-C.cmake index 5fdc25c..08531a7 100644 --- a/Modules/Platform/BlueGeneQ-static-GNU-C.cmake +++ b/Modules/Platform/BlueGeneQ-static-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_static(GNU C) diff --git a/Modules/Platform/BlueGeneQ-static-GNU-CXX.cmake b/Modules/Platform/BlueGeneQ-static-GNU-CXX.cmake index ad7c092..2aa5b33 100644 --- a/Modules/Platform/BlueGeneQ-static-GNU-CXX.cmake +++ b/Modules/Platform/BlueGeneQ-static-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_static(GNU CXX) diff --git a/Modules/Platform/BlueGeneQ-static-GNU-Fortran.cmake b/Modules/Platform/BlueGeneQ-static-GNU-Fortran.cmake index f32d1d4..ab382ec 100644 --- a/Modules/Platform/BlueGeneQ-static-GNU-Fortran.cmake +++ b/Modules/Platform/BlueGeneQ-static-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_static(GNU Fortran) diff --git a/Modules/Platform/BlueGeneQ-static-XL-C.cmake b/Modules/Platform/BlueGeneQ-static-XL-C.cmake index 67cd57d..704bd9a 100644 --- a/Modules/Platform/BlueGeneQ-static-XL-C.cmake +++ b/Modules/Platform/BlueGeneQ-static-XL-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_static(XL C) diff --git a/Modules/Platform/BlueGeneQ-static-XL-CXX.cmake b/Modules/Platform/BlueGeneQ-static-XL-CXX.cmake index a171e7f..f1325ef 100644 --- a/Modules/Platform/BlueGeneQ-static-XL-CXX.cmake +++ b/Modules/Platform/BlueGeneQ-static-XL-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_static(XL CXX) diff --git a/Modules/Platform/BlueGeneQ-static-XL-Fortran.cmake b/Modules/Platform/BlueGeneQ-static-XL-Fortran.cmake index c7fbb44..8e5fb70 100644 --- a/Modules/Platform/BlueGeneQ-static-XL-Fortran.cmake +++ b/Modules/Platform/BlueGeneQ-static-XL-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. __BlueGeneQ_setup_static(XL Fortran) diff --git a/Modules/Platform/BlueGeneQ-static.cmake b/Modules/Platform/BlueGeneQ-static.cmake index 79cd391..015a3c1 100644 --- a/Modules/Platform/BlueGeneQ-static.cmake +++ b/Modules/Platform/BlueGeneQ-static.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/BlueGeneQ-base) diff --git a/Modules/Platform/CYGWIN-GNU.cmake b/Modules/Platform/CYGWIN-GNU.cmake index f372955..925f51b 100644 --- a/Modules/Platform/CYGWIN-GNU.cmake +++ b/Modules/Platform/CYGWIN-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/GHS-MULTI-Determine.cmake b/Modules/Platform/GHS-MULTI-Determine.cmake index 3d893dd..9fb4b8a 100644 --- a/Modules/Platform/GHS-MULTI-Determine.cmake +++ b/Modules/Platform/GHS-MULTI-Determine.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Setup variables used for Green Hills MULTI generator # -- Allow users to override these values. diff --git a/Modules/Platform/GHS-MULTI.cmake b/Modules/Platform/GHS-MULTI.cmake index 5b28f29..bcf32e6 100644 --- a/Modules/Platform/GHS-MULTI.cmake +++ b/Modules/Platform/GHS-MULTI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/GNU-GNU.cmake b/Modules/Platform/GNU-GNU.cmake index c03d6c9..6605de7 100644 --- a/Modules/Platform/GNU-GNU.cmake +++ b/Modules/Platform/GNU-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/HP-UX-GNU.cmake b/Modules/Platform/HP-UX-GNU.cmake index 699c4aa..30e1327 100644 --- a/Modules/Platform/HP-UX-GNU.cmake +++ b/Modules/Platform/HP-UX-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/HP-UX-HP.cmake b/Modules/Platform/HP-UX-HP.cmake index b301d17..11f5caa 100644 --- a/Modules/Platform/HP-UX-HP.cmake +++ b/Modules/Platform/HP-UX-HP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/AIX-AIX-ASM.cmake b/Modules/Platform/Linker/AIX-AIX-ASM.cmake index 714e6a8..701f2e7 100644 --- a/Modules/Platform/Linker/AIX-AIX-ASM.cmake +++ b/Modules/Platform/Linker/AIX-AIX-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/AIX-AIX) diff --git a/Modules/Platform/Linker/AIX-AIX-C.cmake b/Modules/Platform/Linker/AIX-AIX-C.cmake index 4cd4b9c..5a8575e 100644 --- a/Modules/Platform/Linker/AIX-AIX-C.cmake +++ b/Modules/Platform/Linker/AIX-AIX-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/AIX-AIX) diff --git a/Modules/Platform/Linker/AIX-AIX-CXX.cmake b/Modules/Platform/Linker/AIX-AIX-CXX.cmake index 4c6f917..de6e83a 100644 --- a/Modules/Platform/Linker/AIX-AIX-CXX.cmake +++ b/Modules/Platform/Linker/AIX-AIX-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/AIX-AIX) diff --git a/Modules/Platform/Linker/AIX-AIX-Fortran.cmake b/Modules/Platform/Linker/AIX-AIX-Fortran.cmake index c7a43c5..a9c4880 100644 --- a/Modules/Platform/Linker/AIX-AIX-Fortran.cmake +++ b/Modules/Platform/Linker/AIX-AIX-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/AIX-AIX) diff --git a/Modules/Platform/Linker/AIX-AIX.cmake b/Modules/Platform/Linker/AIX-AIX.cmake index 553168b..70765fe 100644 --- a/Modules/Platform/Linker/AIX-AIX.cmake +++ b/Modules/Platform/Linker/AIX-AIX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/AIX-ASM.cmake b/Modules/Platform/Linker/AIX-ASM.cmake index 6699054..14dee4e 100644 --- a/Modules/Platform/Linker/AIX-ASM.cmake +++ b/Modules/Platform/Linker/AIX-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AIX is the default linker include(Platform/Linker/AIX-AIX-ASM) diff --git a/Modules/Platform/Linker/AIX-C.cmake b/Modules/Platform/Linker/AIX-C.cmake index 5eae8d9..a5d9672 100644 --- a/Modules/Platform/Linker/AIX-C.cmake +++ b/Modules/Platform/Linker/AIX-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AIX is the default linker include(Platform/Linker/AIX-AIX-C) diff --git a/Modules/Platform/Linker/AIX-CXX.cmake b/Modules/Platform/Linker/AIX-CXX.cmake index bd77011..e3bd804 100644 --- a/Modules/Platform/Linker/AIX-CXX.cmake +++ b/Modules/Platform/Linker/AIX-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AIX is the default linker include(Platform/Linker/AIX-AIX-CXX) diff --git a/Modules/Platform/Linker/AIX-Fortran.cmake b/Modules/Platform/Linker/AIX-Fortran.cmake index 182af9b..d82c93a 100644 --- a/Modules/Platform/Linker/AIX-Fortran.cmake +++ b/Modules/Platform/Linker/AIX-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AIX is the default linker include(Platform/Linker/AIX-AIX-Fortran) diff --git a/Modules/Platform/Linker/Android-ASM.cmake b/Modules/Platform/Linker/Android-ASM.cmake index 8e44baf..8be11e2 100644 --- a/Modules/Platform/Linker/Android-ASM.cmake +++ b/Modules/Platform/Linker/Android-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Android-GNU-ASM) diff --git a/Modules/Platform/Linker/Android-C.cmake b/Modules/Platform/Linker/Android-C.cmake index d3df948..e44de45 100644 --- a/Modules/Platform/Linker/Android-C.cmake +++ b/Modules/Platform/Linker/Android-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Android-GNU-C) diff --git a/Modules/Platform/Linker/Android-CXX.cmake b/Modules/Platform/Linker/Android-CXX.cmake index aff308b..cb689be 100644 --- a/Modules/Platform/Linker/Android-CXX.cmake +++ b/Modules/Platform/Linker/Android-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Android-GNU-CXX) diff --git a/Modules/Platform/Linker/Android-GNU-ASM.cmake b/Modules/Platform/Linker/Android-GNU-ASM.cmake index bfef8b9..1652b8b 100644 --- a/Modules/Platform/Linker/Android-GNU-ASM.cmake +++ b/Modules/Platform/Linker/Android-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-ASM) diff --git a/Modules/Platform/Linker/Android-GNU-C.cmake b/Modules/Platform/Linker/Android-GNU-C.cmake index 2d0efda..fb43ed8 100644 --- a/Modules/Platform/Linker/Android-GNU-C.cmake +++ b/Modules/Platform/Linker/Android-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-C) diff --git a/Modules/Platform/Linker/Android-GNU-CXX.cmake b/Modules/Platform/Linker/Android-GNU-CXX.cmake index 33c46d5..fb8f90c 100644 --- a/Modules/Platform/Linker/Android-GNU-CXX.cmake +++ b/Modules/Platform/Linker/Android-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-CXX) diff --git a/Modules/Platform/Linker/Android-LLD-ASM.cmake b/Modules/Platform/Linker/Android-LLD-ASM.cmake index 870e59e..2ad48f3 100644 --- a/Modules/Platform/Linker/Android-LLD-ASM.cmake +++ b/Modules/Platform/Linker/Android-LLD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD-ASM) diff --git a/Modules/Platform/Linker/Android-LLD-C.cmake b/Modules/Platform/Linker/Android-LLD-C.cmake index efeeb16..21b2183 100644 --- a/Modules/Platform/Linker/Android-LLD-C.cmake +++ b/Modules/Platform/Linker/Android-LLD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD-C) diff --git a/Modules/Platform/Linker/Android-LLD-CXX.cmake b/Modules/Platform/Linker/Android-LLD-CXX.cmake index 46a516c..9a2c35e 100644 --- a/Modules/Platform/Linker/Android-LLD-CXX.cmake +++ b/Modules/Platform/Linker/Android-LLD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD-CXX) diff --git a/Modules/Platform/Linker/Apple-ASM.cmake b/Modules/Platform/Linker/Apple-ASM.cmake index 8dc7684..16c4887 100644 --- a/Modules/Platform/Linker/Apple-ASM.cmake +++ b/Modules/Platform/Linker/Apple-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-ASM) diff --git a/Modules/Platform/Linker/Apple-AppleClang-ASM.cmake b/Modules/Platform/Linker/Apple-AppleClang-ASM.cmake index 9cf9ff2..b852d46 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-ASM.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-C.cmake b/Modules/Platform/Linker/Apple-AppleClang-C.cmake index 5333074..1e6ad65 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-C.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-CUDA.cmake b/Modules/Platform/Linker/Apple-AppleClang-CUDA.cmake index 87fa306..0e492e6 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-CUDA.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake b/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake index d414824..c4d71ea 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-Fortran.cmake b/Modules/Platform/Linker/Apple-AppleClang-Fortran.cmake index 5637f0f..3ddc05d 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-Fortran.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-OBJC.cmake b/Modules/Platform/Linker/Apple-AppleClang-OBJC.cmake index 4e39bdd..5151628 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-OBJC.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-OBJC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-OBJCXX.cmake b/Modules/Platform/Linker/Apple-AppleClang-OBJCXX.cmake index 2779197..d8aadb0 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-OBJCXX.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-OBJCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang-Swift.cmake b/Modules/Platform/Linker/Apple-AppleClang-Swift.cmake index 633cc90..7081ad4 100644 --- a/Modules/Platform/Linker/Apple-AppleClang-Swift.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang) diff --git a/Modules/Platform/Linker/Apple-AppleClang.cmake b/Modules/Platform/Linker/Apple-AppleClang.cmake index 643cbbd..882e1b1 100644 --- a/Modules/Platform/Linker/Apple-AppleClang.cmake +++ b/Modules/Platform/Linker/Apple-AppleClang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Apple-C.cmake b/Modules/Platform/Linker/Apple-C.cmake index 02a1da9..6ac42c8 100644 --- a/Modules/Platform/Linker/Apple-C.cmake +++ b/Modules/Platform/Linker/Apple-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-C) diff --git a/Modules/Platform/Linker/Apple-CUDA.cmake b/Modules/Platform/Linker/Apple-CUDA.cmake index 27b466d..154c056 100644 --- a/Modules/Platform/Linker/Apple-CUDA.cmake +++ b/Modules/Platform/Linker/Apple-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-CUDA) diff --git a/Modules/Platform/Linker/Apple-CXX.cmake b/Modules/Platform/Linker/Apple-CXX.cmake index b2bc90b..6ba8bd1 100644 --- a/Modules/Platform/Linker/Apple-CXX.cmake +++ b/Modules/Platform/Linker/Apple-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-CXX) diff --git a/Modules/Platform/Linker/Apple-Fortran.cmake b/Modules/Platform/Linker/Apple-Fortran.cmake index a39e7ae..580cbab 100644 --- a/Modules/Platform/Linker/Apple-Fortran.cmake +++ b/Modules/Platform/Linker/Apple-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-Fortran) diff --git a/Modules/Platform/Linker/Apple-LLD-C.cmake b/Modules/Platform/Linker/Apple-LLD-C.cmake index 64d9591..4581948 100644 --- a/Modules/Platform/Linker/Apple-LLD-C.cmake +++ b/Modules/Platform/Linker/Apple-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-C) diff --git a/Modules/Platform/Linker/Apple-LLD-CXX.cmake b/Modules/Platform/Linker/Apple-LLD-CXX.cmake index deaa558..5faf494 100644 --- a/Modules/Platform/Linker/Apple-LLD-CXX.cmake +++ b/Modules/Platform/Linker/Apple-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-CXX) diff --git a/Modules/Platform/Linker/Apple-LLD-OBJC.cmake b/Modules/Platform/Linker/Apple-LLD-OBJC.cmake index 1879034..9f87cdd 100644 --- a/Modules/Platform/Linker/Apple-LLD-OBJC.cmake +++ b/Modules/Platform/Linker/Apple-LLD-OBJC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-OBJC) diff --git a/Modules/Platform/Linker/Apple-LLD-OBJCXX.cmake b/Modules/Platform/Linker/Apple-LLD-OBJCXX.cmake index 71844d9..0c1bf40 100644 --- a/Modules/Platform/Linker/Apple-LLD-OBJCXX.cmake +++ b/Modules/Platform/Linker/Apple-LLD-OBJCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-OBJCXX) diff --git a/Modules/Platform/Linker/Apple-MOLD-C.cmake b/Modules/Platform/Linker/Apple-MOLD-C.cmake index 14347bb..09a4710 100644 --- a/Modules/Platform/Linker/Apple-MOLD-C.cmake +++ b/Modules/Platform/Linker/Apple-MOLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-C) diff --git a/Modules/Platform/Linker/Apple-MOLD-CXX.cmake b/Modules/Platform/Linker/Apple-MOLD-CXX.cmake index 416b8b5..b8a8e08 100644 --- a/Modules/Platform/Linker/Apple-MOLD-CXX.cmake +++ b/Modules/Platform/Linker/Apple-MOLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-CXX) diff --git a/Modules/Platform/Linker/Apple-MOLD-OBJC.cmake b/Modules/Platform/Linker/Apple-MOLD-OBJC.cmake index e18281b..6d40300 100644 --- a/Modules/Platform/Linker/Apple-MOLD-OBJC.cmake +++ b/Modules/Platform/Linker/Apple-MOLD-OBJC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-OBJC) diff --git a/Modules/Platform/Linker/Apple-MOLD-OBJCXX.cmake b/Modules/Platform/Linker/Apple-MOLD-OBJCXX.cmake index 3a7d48d..1052a97 100644 --- a/Modules/Platform/Linker/Apple-MOLD-OBJCXX.cmake +++ b/Modules/Platform/Linker/Apple-MOLD-OBJCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Apple-AppleClang-OBJCXX) diff --git a/Modules/Platform/Linker/Apple-OBJC.cmake b/Modules/Platform/Linker/Apple-OBJC.cmake index 316d253..4f68df1 100644 --- a/Modules/Platform/Linker/Apple-OBJC.cmake +++ b/Modules/Platform/Linker/Apple-OBJC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-OBJC) diff --git a/Modules/Platform/Linker/Apple-OBJCXX.cmake b/Modules/Platform/Linker/Apple-OBJCXX.cmake index 23db50f..d84428a 100644 --- a/Modules/Platform/Linker/Apple-OBJCXX.cmake +++ b/Modules/Platform/Linker/Apple-OBJCXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-OBJCXX) diff --git a/Modules/Platform/Linker/Apple-Swift.cmake b/Modules/Platform/Linker/Apple-Swift.cmake index f5404fa..5c5041a 100644 --- a/Modules/Platform/Linker/Apple-Swift.cmake +++ b/Modules/Platform/Linker/Apple-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # AppleClang is the default linker include(Platform/Linker/Apple-AppleClang-Swift) diff --git a/Modules/Platform/Linker/BSD-Linker-Initialize.cmake b/Modules/Platform/Linker/BSD-Linker-Initialize.cmake index 31157af..b28dc06 100644 --- a/Modules/Platform/Linker/BSD-Linker-Initialize.cmake +++ b/Modules/Platform/Linker/BSD-Linker-Initialize.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT _CMAKE_SYSTEM_LINKER_TYPE) block(SCOPE_FOR VARIABLES) diff --git a/Modules/Platform/Linker/CYGWIN-ASM.cmake b/Modules/Platform/Linker/CYGWIN-ASM.cmake index ab95f4c..540842b 100644 --- a/Modules/Platform/Linker/CYGWIN-ASM.cmake +++ b/Modules/Platform/Linker/CYGWIN-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/CYGWIN-GNU-ASM) diff --git a/Modules/Platform/Linker/CYGWIN-C.cmake b/Modules/Platform/Linker/CYGWIN-C.cmake index 703624d..5c9cd2f 100644 --- a/Modules/Platform/Linker/CYGWIN-C.cmake +++ b/Modules/Platform/Linker/CYGWIN-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/CYGWIN-GNU-C) diff --git a/Modules/Platform/Linker/CYGWIN-CXX.cmake b/Modules/Platform/Linker/CYGWIN-CXX.cmake index 7837188..69049ef 100644 --- a/Modules/Platform/Linker/CYGWIN-CXX.cmake +++ b/Modules/Platform/Linker/CYGWIN-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/CYGWIN-GNU-CXX) diff --git a/Modules/Platform/Linker/CYGWIN-Fortran.cmake b/Modules/Platform/Linker/CYGWIN-Fortran.cmake index 18ce085..aa7b634 100644 --- a/Modules/Platform/Linker/CYGWIN-Fortran.cmake +++ b/Modules/Platform/Linker/CYGWIN-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/CYGWIN-GNU-Fortran) diff --git a/Modules/Platform/Linker/CYGWIN-GNU-ASM.cmake b/Modules/Platform/Linker/CYGWIN-GNU-ASM.cmake index e65d0a0..543fd7f 100644 --- a/Modules/Platform/Linker/CYGWIN-GNU-ASM.cmake +++ b/Modules/Platform/Linker/CYGWIN-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU) diff --git a/Modules/Platform/Linker/CYGWIN-GNU-C.cmake b/Modules/Platform/Linker/CYGWIN-GNU-C.cmake index dc0a678..59f4df0 100644 --- a/Modules/Platform/Linker/CYGWIN-GNU-C.cmake +++ b/Modules/Platform/Linker/CYGWIN-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU) diff --git a/Modules/Platform/Linker/CYGWIN-GNU-CXX.cmake b/Modules/Platform/Linker/CYGWIN-GNU-CXX.cmake index a45b3cd..6b5b715 100644 --- a/Modules/Platform/Linker/CYGWIN-GNU-CXX.cmake +++ b/Modules/Platform/Linker/CYGWIN-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU) diff --git a/Modules/Platform/Linker/CYGWIN-GNU-Fortran.cmake b/Modules/Platform/Linker/CYGWIN-GNU-Fortran.cmake index 7eba12a..db2c042 100644 --- a/Modules/Platform/Linker/CYGWIN-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/CYGWIN-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU) diff --git a/Modules/Platform/Linker/CYGWIN-GNU.cmake b/Modules/Platform/Linker/CYGWIN-GNU.cmake index 0ac407f..7a7e6f8 100644 --- a/Modules/Platform/Linker/CYGWIN-GNU.cmake +++ b/Modules/Platform/Linker/CYGWIN-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/CYGWIN-LLD-ASM.cmake b/Modules/Platform/Linker/CYGWIN-LLD-ASM.cmake index 1c65875..672dd91 100644 --- a/Modules/Platform/Linker/CYGWIN-LLD-ASM.cmake +++ b/Modules/Platform/Linker/CYGWIN-LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD) diff --git a/Modules/Platform/Linker/CYGWIN-LLD-C.cmake b/Modules/Platform/Linker/CYGWIN-LLD-C.cmake index a4f3063..4467b9e 100644 --- a/Modules/Platform/Linker/CYGWIN-LLD-C.cmake +++ b/Modules/Platform/Linker/CYGWIN-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD) diff --git a/Modules/Platform/Linker/CYGWIN-LLD-CXX.cmake b/Modules/Platform/Linker/CYGWIN-LLD-CXX.cmake index 5bd5063..52c1e72 100644 --- a/Modules/Platform/Linker/CYGWIN-LLD-CXX.cmake +++ b/Modules/Platform/Linker/CYGWIN-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD) diff --git a/Modules/Platform/Linker/CYGWIN-LLD-Fortran.cmake b/Modules/Platform/Linker/CYGWIN-LLD-Fortran.cmake index 3034b18..552ec06 100644 --- a/Modules/Platform/Linker/CYGWIN-LLD-Fortran.cmake +++ b/Modules/Platform/Linker/CYGWIN-LLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD) diff --git a/Modules/Platform/Linker/CYGWIN-LLD.cmake b/Modules/Platform/Linker/CYGWIN-LLD.cmake index 1b637e2..3d2b090 100644 --- a/Modules/Platform/Linker/CYGWIN-LLD.cmake +++ b/Modules/Platform/Linker/CYGWIN-LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/DragonFly-ASM.cmake b/Modules/Platform/Linker/DragonFly-ASM.cmake index b046488..fa886d1 100644 --- a/Modules/Platform/Linker/DragonFly-ASM.cmake +++ b/Modules/Platform/Linker/DragonFly-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-ASM) diff --git a/Modules/Platform/Linker/DragonFly-C.cmake b/Modules/Platform/Linker/DragonFly-C.cmake index 6fedac2..5361770 100644 --- a/Modules/Platform/Linker/DragonFly-C.cmake +++ b/Modules/Platform/Linker/DragonFly-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-C) diff --git a/Modules/Platform/Linker/DragonFly-CXX.cmake b/Modules/Platform/Linker/DragonFly-CXX.cmake index 8064bf4..5dd6124 100644 --- a/Modules/Platform/Linker/DragonFly-CXX.cmake +++ b/Modules/Platform/Linker/DragonFly-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-CXX) diff --git a/Modules/Platform/Linker/DragonFly-Fortran.cmake b/Modules/Platform/Linker/DragonFly-Fortran.cmake index 64ea904..ddb2fe6 100644 --- a/Modules/Platform/Linker/DragonFly-Fortran.cmake +++ b/Modules/Platform/Linker/DragonFly-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-Fortran) diff --git a/Modules/Platform/Linker/DragonFly-GNU-ASM.cmake b/Modules/Platform/Linker/DragonFly-GNU-ASM.cmake index e643a97..bef9efb 100644 --- a/Modules/Platform/Linker/DragonFly-GNU-ASM.cmake +++ b/Modules/Platform/Linker/DragonFly-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU-ASM) diff --git a/Modules/Platform/Linker/DragonFly-GNU-C.cmake b/Modules/Platform/Linker/DragonFly-GNU-C.cmake index 729e68d..c597602 100644 --- a/Modules/Platform/Linker/DragonFly-GNU-C.cmake +++ b/Modules/Platform/Linker/DragonFly-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU-C) diff --git a/Modules/Platform/Linker/DragonFly-GNU-CXX.cmake b/Modules/Platform/Linker/DragonFly-GNU-CXX.cmake index d9907ae..b2ea453 100644 --- a/Modules/Platform/Linker/DragonFly-GNU-CXX.cmake +++ b/Modules/Platform/Linker/DragonFly-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU-CXX) diff --git a/Modules/Platform/Linker/DragonFly-GNU-Fortran.cmake b/Modules/Platform/Linker/DragonFly-GNU-Fortran.cmake index f696be9..ae9eba6 100644 --- a/Modules/Platform/Linker/DragonFly-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/DragonFly-GNU-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU-Fortran) diff --git a/Modules/Platform/Linker/DragonFly-LLD-ASM.cmake b/Modules/Platform/Linker/DragonFly-LLD-ASM.cmake index d4774cd..b6106de 100644 --- a/Modules/Platform/Linker/DragonFly-LLD-ASM.cmake +++ b/Modules/Platform/Linker/DragonFly-LLD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD-ASM) diff --git a/Modules/Platform/Linker/DragonFly-LLD-C.cmake b/Modules/Platform/Linker/DragonFly-LLD-C.cmake index 5ec3b76..e10eaa5 100644 --- a/Modules/Platform/Linker/DragonFly-LLD-C.cmake +++ b/Modules/Platform/Linker/DragonFly-LLD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD-C) diff --git a/Modules/Platform/Linker/DragonFly-LLD-CXX.cmake b/Modules/Platform/Linker/DragonFly-LLD-CXX.cmake index 11ab59e..fa4387f 100644 --- a/Modules/Platform/Linker/DragonFly-LLD-CXX.cmake +++ b/Modules/Platform/Linker/DragonFly-LLD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD-CXX) diff --git a/Modules/Platform/Linker/DragonFly-LLD-Fortran.cmake b/Modules/Platform/Linker/DragonFly-LLD-Fortran.cmake index a2b5141..81542e3 100644 --- a/Modules/Platform/Linker/DragonFly-LLD-Fortran.cmake +++ b/Modules/Platform/Linker/DragonFly-LLD-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD-Fortran) diff --git a/Modules/Platform/Linker/FreeBSD-ASM.cmake b/Modules/Platform/Linker/FreeBSD-ASM.cmake index d2465cf..e113df8 100644 --- a/Modules/Platform/Linker/FreeBSD-ASM.cmake +++ b/Modules/Platform/Linker/FreeBSD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) if(_CMAKE_SYSTEM_LINKER_TYPE STREQUAL "GNU") diff --git a/Modules/Platform/Linker/FreeBSD-C.cmake b/Modules/Platform/Linker/FreeBSD-C.cmake index bb0cf73..0a0377e 100644 --- a/Modules/Platform/Linker/FreeBSD-C.cmake +++ b/Modules/Platform/Linker/FreeBSD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/FreeBSD-CXX.cmake b/Modules/Platform/Linker/FreeBSD-CXX.cmake index 6440e18..4ea1200 100644 --- a/Modules/Platform/Linker/FreeBSD-CXX.cmake +++ b/Modules/Platform/Linker/FreeBSD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/FreeBSD-Fortran.cmake b/Modules/Platform/Linker/FreeBSD-Fortran.cmake index 56f6fbb..987ff16 100644 --- a/Modules/Platform/Linker/FreeBSD-Fortran.cmake +++ b/Modules/Platform/Linker/FreeBSD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/FreeBSD-GNU-ASM.cmake b/Modules/Platform/Linker/FreeBSD-GNU-ASM.cmake index 5ff8ed8..08826f3 100644 --- a/Modules/Platform/Linker/FreeBSD-GNU-ASM.cmake +++ b/Modules/Platform/Linker/FreeBSD-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU) diff --git a/Modules/Platform/Linker/FreeBSD-GNU-C.cmake b/Modules/Platform/Linker/FreeBSD-GNU-C.cmake index 8b6f0fd..ee92f3e 100644 --- a/Modules/Platform/Linker/FreeBSD-GNU-C.cmake +++ b/Modules/Platform/Linker/FreeBSD-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU) diff --git a/Modules/Platform/Linker/FreeBSD-GNU-CXX.cmake b/Modules/Platform/Linker/FreeBSD-GNU-CXX.cmake index ecc5533..86bb88f 100644 --- a/Modules/Platform/Linker/FreeBSD-GNU-CXX.cmake +++ b/Modules/Platform/Linker/FreeBSD-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU) diff --git a/Modules/Platform/Linker/FreeBSD-GNU-Fortran.cmake b/Modules/Platform/Linker/FreeBSD-GNU-Fortran.cmake index 0e20437..41743f8 100644 --- a/Modules/Platform/Linker/FreeBSD-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/FreeBSD-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-GNU) diff --git a/Modules/Platform/Linker/FreeBSD-GNU.cmake b/Modules/Platform/Linker/FreeBSD-GNU.cmake index 5b26c03..8912c36 100644 --- a/Modules/Platform/Linker/FreeBSD-GNU.cmake +++ b/Modules/Platform/Linker/FreeBSD-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/FreeBSD-LLD-ASM.cmake b/Modules/Platform/Linker/FreeBSD-LLD-ASM.cmake index 0b36298..8aa7078 100644 --- a/Modules/Platform/Linker/FreeBSD-LLD-ASM.cmake +++ b/Modules/Platform/Linker/FreeBSD-LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD) diff --git a/Modules/Platform/Linker/FreeBSD-LLD-C.cmake b/Modules/Platform/Linker/FreeBSD-LLD-C.cmake index 0120dac..4fee39c 100644 --- a/Modules/Platform/Linker/FreeBSD-LLD-C.cmake +++ b/Modules/Platform/Linker/FreeBSD-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD) diff --git a/Modules/Platform/Linker/FreeBSD-LLD-CXX.cmake b/Modules/Platform/Linker/FreeBSD-LLD-CXX.cmake index 0d8aea8..a477a3b 100644 --- a/Modules/Platform/Linker/FreeBSD-LLD-CXX.cmake +++ b/Modules/Platform/Linker/FreeBSD-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD) diff --git a/Modules/Platform/Linker/FreeBSD-LLD-Fortran.cmake b/Modules/Platform/Linker/FreeBSD-LLD-Fortran.cmake index fa0991d..dc3a0b8 100644 --- a/Modules/Platform/Linker/FreeBSD-LLD-Fortran.cmake +++ b/Modules/Platform/Linker/FreeBSD-LLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/FreeBSD-LLD) diff --git a/Modules/Platform/Linker/FreeBSD-LLD.cmake b/Modules/Platform/Linker/FreeBSD-LLD.cmake index 19f4df5..72d5946 100644 --- a/Modules/Platform/Linker/FreeBSD-LLD.cmake +++ b/Modules/Platform/Linker/FreeBSD-LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/GNU-ASM.cmake b/Modules/Platform/Linker/GNU-ASM.cmake index e78201c..2e9b603 100644 --- a/Modules/Platform/Linker/GNU-ASM.cmake +++ b/Modules/Platform/Linker/GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/GNU-GNU-ASM) diff --git a/Modules/Platform/Linker/GNU-C.cmake b/Modules/Platform/Linker/GNU-C.cmake index 7667940..bbf12bf 100644 --- a/Modules/Platform/Linker/GNU-C.cmake +++ b/Modules/Platform/Linker/GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/GNU-GNU-C) diff --git a/Modules/Platform/Linker/GNU-CXX.cmake b/Modules/Platform/Linker/GNU-CXX.cmake index d653f34..7578d44 100644 --- a/Modules/Platform/Linker/GNU-CXX.cmake +++ b/Modules/Platform/Linker/GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/GNU-GNU-CXX) diff --git a/Modules/Platform/Linker/GNU-Fortran.cmake b/Modules/Platform/Linker/GNU-Fortran.cmake index 99bcb76..5bf2a4d 100644 --- a/Modules/Platform/Linker/GNU-Fortran.cmake +++ b/Modules/Platform/Linker/GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/GNU-GNU-Fortran) diff --git a/Modules/Platform/Linker/GNU-GNU-ASM.cmake b/Modules/Platform/Linker/GNU-GNU-ASM.cmake index 39316b9..724fee5 100644 --- a/Modules/Platform/Linker/GNU-GNU-ASM.cmake +++ b/Modules/Platform/Linker/GNU-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/GNU-GNU) diff --git a/Modules/Platform/Linker/GNU-GNU-C.cmake b/Modules/Platform/Linker/GNU-GNU-C.cmake index 12a9883..63481d5 100644 --- a/Modules/Platform/Linker/GNU-GNU-C.cmake +++ b/Modules/Platform/Linker/GNU-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/GNU-GNU) diff --git a/Modules/Platform/Linker/GNU-GNU-CXX.cmake b/Modules/Platform/Linker/GNU-GNU-CXX.cmake index 776f604..ea7398b 100644 --- a/Modules/Platform/Linker/GNU-GNU-CXX.cmake +++ b/Modules/Platform/Linker/GNU-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/GNU-GNU) diff --git a/Modules/Platform/Linker/GNU-GNU-Fortran.cmake b/Modules/Platform/Linker/GNU-GNU-Fortran.cmake index 87b5c9b..2dfab73 100644 --- a/Modules/Platform/Linker/GNU-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/GNU-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/GNU-GNU) diff --git a/Modules/Platform/Linker/GNU-GNU.cmake b/Modules/Platform/Linker/GNU-GNU.cmake index 274b876..9038f03 100644 --- a/Modules/Platform/Linker/GNU-GNU.cmake +++ b/Modules/Platform/Linker/GNU-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/GNU.cmake b/Modules/Platform/Linker/GNU.cmake index b4c47bd..44923c4 100644 --- a/Modules/Platform/Linker/GNU.cmake +++ b/Modules/Platform/Linker/GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Haiku-ASM.cmake b/Modules/Platform/Linker/Haiku-ASM.cmake index 9e8a2b3..a63409b 100644 --- a/Modules/Platform/Linker/Haiku-ASM.cmake +++ b/Modules/Platform/Linker/Haiku-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Haiku-GNU-ASM) diff --git a/Modules/Platform/Linker/Haiku-C.cmake b/Modules/Platform/Linker/Haiku-C.cmake index 4abf4a7..6f74474 100644 --- a/Modules/Platform/Linker/Haiku-C.cmake +++ b/Modules/Platform/Linker/Haiku-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Haiku-GNU-C) diff --git a/Modules/Platform/Linker/Haiku-CXX.cmake b/Modules/Platform/Linker/Haiku-CXX.cmake index 96fd0f8..2c5c8b6 100644 --- a/Modules/Platform/Linker/Haiku-CXX.cmake +++ b/Modules/Platform/Linker/Haiku-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Haiku-GNU-CXX) diff --git a/Modules/Platform/Linker/Haiku-GNU-ASM.cmake b/Modules/Platform/Linker/Haiku-GNU-ASM.cmake index bfef8b9..1652b8b 100644 --- a/Modules/Platform/Linker/Haiku-GNU-ASM.cmake +++ b/Modules/Platform/Linker/Haiku-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-ASM) diff --git a/Modules/Platform/Linker/Haiku-GNU-C.cmake b/Modules/Platform/Linker/Haiku-GNU-C.cmake index 2d0efda..fb43ed8 100644 --- a/Modules/Platform/Linker/Haiku-GNU-C.cmake +++ b/Modules/Platform/Linker/Haiku-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-C) diff --git a/Modules/Platform/Linker/Haiku-GNU-CXX.cmake b/Modules/Platform/Linker/Haiku-GNU-CXX.cmake index 33c46d5..fb8f90c 100644 --- a/Modules/Platform/Linker/Haiku-GNU-CXX.cmake +++ b/Modules/Platform/Linker/Haiku-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-CXX) diff --git a/Modules/Platform/Linker/Haiku-LLD-ASM.cmake b/Modules/Platform/Linker/Haiku-LLD-ASM.cmake index 870e59e..2ad48f3 100644 --- a/Modules/Platform/Linker/Haiku-LLD-ASM.cmake +++ b/Modules/Platform/Linker/Haiku-LLD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD-ASM) diff --git a/Modules/Platform/Linker/Haiku-LLD-C.cmake b/Modules/Platform/Linker/Haiku-LLD-C.cmake index efeeb16..21b2183 100644 --- a/Modules/Platform/Linker/Haiku-LLD-C.cmake +++ b/Modules/Platform/Linker/Haiku-LLD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD-C) diff --git a/Modules/Platform/Linker/Haiku-LLD-CXX.cmake b/Modules/Platform/Linker/Haiku-LLD-CXX.cmake index 46a516c..9a2c35e 100644 --- a/Modules/Platform/Linker/Haiku-LLD-CXX.cmake +++ b/Modules/Platform/Linker/Haiku-LLD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD-CXX) diff --git a/Modules/Platform/Linker/Linux-ASM.cmake b/Modules/Platform/Linker/Linux-ASM.cmake index 67e8e79..f815ce3 100644 --- a/Modules/Platform/Linker/Linux-ASM.cmake +++ b/Modules/Platform/Linker/Linux-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-ASM) diff --git a/Modules/Platform/Linker/Linux-C.cmake b/Modules/Platform/Linker/Linux-C.cmake index f40c631..fe2d3ce 100644 --- a/Modules/Platform/Linker/Linux-C.cmake +++ b/Modules/Platform/Linker/Linux-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-C) diff --git a/Modules/Platform/Linker/Linux-CUDA.cmake b/Modules/Platform/Linker/Linux-CUDA.cmake index 191c347..04da668 100644 --- a/Modules/Platform/Linker/Linux-CUDA.cmake +++ b/Modules/Platform/Linker/Linux-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-CUDA) diff --git a/Modules/Platform/Linker/Linux-CXX.cmake b/Modules/Platform/Linker/Linux-CXX.cmake index 638f3c7..9287e8b 100644 --- a/Modules/Platform/Linker/Linux-CXX.cmake +++ b/Modules/Platform/Linker/Linux-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-CXX) diff --git a/Modules/Platform/Linker/Linux-Fortran.cmake b/Modules/Platform/Linker/Linux-Fortran.cmake index 6bfcc69..c589290 100644 --- a/Modules/Platform/Linker/Linux-Fortran.cmake +++ b/Modules/Platform/Linker/Linux-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-Fortran) diff --git a/Modules/Platform/Linker/Linux-GNU-ASM.cmake b/Modules/Platform/Linker/Linux-GNU-ASM.cmake index 5812c08..581d82a 100644 --- a/Modules/Platform/Linker/Linux-GNU-ASM.cmake +++ b/Modules/Platform/Linker/Linux-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU-C.cmake b/Modules/Platform/Linker/Linux-GNU-C.cmake index 5bb3224..e175930 100644 --- a/Modules/Platform/Linker/Linux-GNU-C.cmake +++ b/Modules/Platform/Linker/Linux-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU-CUDA.cmake b/Modules/Platform/Linker/Linux-GNU-CUDA.cmake index 5a3faa4..d1de040 100644 --- a/Modules/Platform/Linker/Linux-GNU-CUDA.cmake +++ b/Modules/Platform/Linker/Linux-GNU-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU-CXX.cmake b/Modules/Platform/Linker/Linux-GNU-CXX.cmake index 8b0afa7..59d91db 100644 --- a/Modules/Platform/Linker/Linux-GNU-CXX.cmake +++ b/Modules/Platform/Linker/Linux-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU-Fortran.cmake b/Modules/Platform/Linker/Linux-GNU-Fortran.cmake index b7f8a16..6de8c44 100644 --- a/Modules/Platform/Linker/Linux-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/Linux-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU-HIP.cmake b/Modules/Platform/Linker/Linux-GNU-HIP.cmake index 6fb9a06..560d042 100644 --- a/Modules/Platform/Linker/Linux-GNU-HIP.cmake +++ b/Modules/Platform/Linker/Linux-GNU-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU-Swift.cmake b/Modules/Platform/Linker/Linux-GNU-Swift.cmake index 06929ef..aa579ba 100644 --- a/Modules/Platform/Linker/Linux-GNU-Swift.cmake +++ b/Modules/Platform/Linker/Linux-GNU-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU) diff --git a/Modules/Platform/Linker/Linux-GNU.cmake b/Modules/Platform/Linker/Linux-GNU.cmake index 0cffafb..67099b9 100644 --- a/Modules/Platform/Linker/Linux-GNU.cmake +++ b/Modules/Platform/Linker/Linux-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Linux-GNUgold-ASM.cmake b/Modules/Platform/Linker/Linux-GNUgold-ASM.cmake index 54b4554..bf80396 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-ASM.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-ASM) diff --git a/Modules/Platform/Linker/Linux-GNUgold-C.cmake b/Modules/Platform/Linker/Linux-GNUgold-C.cmake index 929ac88..24b769a 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-C.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-C) diff --git a/Modules/Platform/Linker/Linux-GNUgold-CUDA.cmake b/Modules/Platform/Linker/Linux-GNUgold-CUDA.cmake index 0dc4ba2..8340f7a 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-CUDA.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-CUDA) diff --git a/Modules/Platform/Linker/Linux-GNUgold-CXX.cmake b/Modules/Platform/Linker/Linux-GNUgold-CXX.cmake index f390248..13a6287 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-CXX.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-CXX) diff --git a/Modules/Platform/Linker/Linux-GNUgold-Fortran.cmake b/Modules/Platform/Linker/Linux-GNUgold-Fortran.cmake index 531d524..09074a0 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-Fortran.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-Fortran) diff --git a/Modules/Platform/Linker/Linux-GNUgold-HIP.cmake b/Modules/Platform/Linker/Linux-GNUgold-HIP.cmake index 0b77210..9120aaf 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-HIP.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-HIP) diff --git a/Modules/Platform/Linker/Linux-GNUgold-Swift.cmake b/Modules/Platform/Linker/Linux-GNUgold-Swift.cmake index b9b6d15..d3a7a32 100644 --- a/Modules/Platform/Linker/Linux-GNUgold-Swift.cmake +++ b/Modules/Platform/Linker/Linux-GNUgold-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-GNU-Swift) diff --git a/Modules/Platform/Linker/Linux-HIP.cmake b/Modules/Platform/Linker/Linux-HIP.cmake index 4c94abc..228a0e9 100644 --- a/Modules/Platform/Linker/Linux-HIP.cmake +++ b/Modules/Platform/Linker/Linux-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-HIP) diff --git a/Modules/Platform/Linker/Linux-LLD-ASM.cmake b/Modules/Platform/Linker/Linux-LLD-ASM.cmake index 7196133..c171e11 100644 --- a/Modules/Platform/Linker/Linux-LLD-ASM.cmake +++ b/Modules/Platform/Linker/Linux-LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD-C.cmake b/Modules/Platform/Linker/Linux-LLD-C.cmake index f8a409e..a3fd6a3 100644 --- a/Modules/Platform/Linker/Linux-LLD-C.cmake +++ b/Modules/Platform/Linker/Linux-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD-CUDA.cmake b/Modules/Platform/Linker/Linux-LLD-CUDA.cmake index 161c7bf..9d3afb8 100644 --- a/Modules/Platform/Linker/Linux-LLD-CUDA.cmake +++ b/Modules/Platform/Linker/Linux-LLD-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD-CXX.cmake b/Modules/Platform/Linker/Linux-LLD-CXX.cmake index 8530a38..69c9ef9 100644 --- a/Modules/Platform/Linker/Linux-LLD-CXX.cmake +++ b/Modules/Platform/Linker/Linux-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD-Fortran.cmake b/Modules/Platform/Linker/Linux-LLD-Fortran.cmake index 70cd3b4..c5a93c6 100644 --- a/Modules/Platform/Linker/Linux-LLD-Fortran.cmake +++ b/Modules/Platform/Linker/Linux-LLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD-HIP.cmake b/Modules/Platform/Linker/Linux-LLD-HIP.cmake index ee08495..9b3c579 100644 --- a/Modules/Platform/Linker/Linux-LLD-HIP.cmake +++ b/Modules/Platform/Linker/Linux-LLD-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD-Swift.cmake b/Modules/Platform/Linker/Linux-LLD-Swift.cmake index 3428034..e265aba 100644 --- a/Modules/Platform/Linker/Linux-LLD-Swift.cmake +++ b/Modules/Platform/Linker/Linux-LLD-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-LLD) diff --git a/Modules/Platform/Linker/Linux-LLD.cmake b/Modules/Platform/Linker/Linux-LLD.cmake index 86eedd8..9d261e2 100644 --- a/Modules/Platform/Linker/Linux-LLD.cmake +++ b/Modules/Platform/Linker/Linux-LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Linux-MOLD-ASM.cmake b/Modules/Platform/Linker/Linux-MOLD-ASM.cmake index 5cc7a71..4680f0b 100644 --- a/Modules/Platform/Linker/Linux-MOLD-ASM.cmake +++ b/Modules/Platform/Linker/Linux-MOLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-MOLD) diff --git a/Modules/Platform/Linker/Linux-MOLD-C.cmake b/Modules/Platform/Linker/Linux-MOLD-C.cmake index a62c2c9..9b10e61 100644 --- a/Modules/Platform/Linker/Linux-MOLD-C.cmake +++ b/Modules/Platform/Linker/Linux-MOLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-MOLD) diff --git a/Modules/Platform/Linker/Linux-MOLD-CUDA.cmake b/Modules/Platform/Linker/Linux-MOLD-CUDA.cmake index 5248036..2c0a767 100644 --- a/Modules/Platform/Linker/Linux-MOLD-CUDA.cmake +++ b/Modules/Platform/Linker/Linux-MOLD-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-MOLD) diff --git a/Modules/Platform/Linker/Linux-MOLD-CXX.cmake b/Modules/Platform/Linker/Linux-MOLD-CXX.cmake index 4c43624..e0caa27 100644 --- a/Modules/Platform/Linker/Linux-MOLD-CXX.cmake +++ b/Modules/Platform/Linker/Linux-MOLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-MOLD) diff --git a/Modules/Platform/Linker/Linux-MOLD-Fortran.cmake b/Modules/Platform/Linker/Linux-MOLD-Fortran.cmake index e26bd5d..101e7a4 100644 --- a/Modules/Platform/Linker/Linux-MOLD-Fortran.cmake +++ b/Modules/Platform/Linker/Linux-MOLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-MOLD) diff --git a/Modules/Platform/Linker/Linux-MOLD-HIP.cmake b/Modules/Platform/Linker/Linux-MOLD-HIP.cmake index 5dd6c16..bc162f9 100644 --- a/Modules/Platform/Linker/Linux-MOLD-HIP.cmake +++ b/Modules/Platform/Linker/Linux-MOLD-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Linux-MOLD) diff --git a/Modules/Platform/Linker/Linux-MOLD.cmake b/Modules/Platform/Linker/Linux-MOLD.cmake index 2a3d9dc..4b92ff0 100644 --- a/Modules/Platform/Linker/Linux-MOLD.cmake +++ b/Modules/Platform/Linker/Linux-MOLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Linux-Swift.cmake b/Modules/Platform/Linker/Linux-Swift.cmake index 638f3c7..9287e8b 100644 --- a/Modules/Platform/Linker/Linux-Swift.cmake +++ b/Modules/Platform/Linker/Linux-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/Linux-GNU-CXX) diff --git a/Modules/Platform/Linker/MSYS-ASM.cmake b/Modules/Platform/Linker/MSYS-ASM.cmake index 9f72f5f..06558c7 100644 --- a/Modules/Platform/Linker/MSYS-ASM.cmake +++ b/Modules/Platform/Linker/MSYS-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-ASM) diff --git a/Modules/Platform/Linker/MSYS-C.cmake b/Modules/Platform/Linker/MSYS-C.cmake index 5ea9f31..b6f7b59 100644 --- a/Modules/Platform/Linker/MSYS-C.cmake +++ b/Modules/Platform/Linker/MSYS-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-C) diff --git a/Modules/Platform/Linker/MSYS-CXX.cmake b/Modules/Platform/Linker/MSYS-CXX.cmake index a64b538..0e10dcf 100644 --- a/Modules/Platform/Linker/MSYS-CXX.cmake +++ b/Modules/Platform/Linker/MSYS-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-CXX) diff --git a/Modules/Platform/Linker/MSYS-Fortran.cmake b/Modules/Platform/Linker/MSYS-Fortran.cmake index 390063d..c3104c1 100644 --- a/Modules/Platform/Linker/MSYS-Fortran.cmake +++ b/Modules/Platform/Linker/MSYS-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-Fortran) diff --git a/Modules/Platform/Linker/MSYS-GNU-ASM.cmake b/Modules/Platform/Linker/MSYS-GNU-ASM.cmake index f85298e..6c2b535 100644 --- a/Modules/Platform/Linker/MSYS-GNU-ASM.cmake +++ b/Modules/Platform/Linker/MSYS-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU-ASM) diff --git a/Modules/Platform/Linker/MSYS-GNU-C.cmake b/Modules/Platform/Linker/MSYS-GNU-C.cmake index 4e6415f..903bedf 100644 --- a/Modules/Platform/Linker/MSYS-GNU-C.cmake +++ b/Modules/Platform/Linker/MSYS-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU-C) diff --git a/Modules/Platform/Linker/MSYS-GNU-CXX.cmake b/Modules/Platform/Linker/MSYS-GNU-CXX.cmake index 2a48ddc..6a75547 100644 --- a/Modules/Platform/Linker/MSYS-GNU-CXX.cmake +++ b/Modules/Platform/Linker/MSYS-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU-CXX) diff --git a/Modules/Platform/Linker/MSYS-GNU-Fortran.cmake b/Modules/Platform/Linker/MSYS-GNU-Fortran.cmake index 5055d22..f2926ef 100644 --- a/Modules/Platform/Linker/MSYS-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/MSYS-GNU-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-GNU-Fortran) diff --git a/Modules/Platform/Linker/MSYS-LLD-ASM.cmake b/Modules/Platform/Linker/MSYS-LLD-ASM.cmake index 907d084..3a447a5 100644 --- a/Modules/Platform/Linker/MSYS-LLD-ASM.cmake +++ b/Modules/Platform/Linker/MSYS-LLD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD-ASM) diff --git a/Modules/Platform/Linker/MSYS-LLD-C.cmake b/Modules/Platform/Linker/MSYS-LLD-C.cmake index bef158d..002ed05 100644 --- a/Modules/Platform/Linker/MSYS-LLD-C.cmake +++ b/Modules/Platform/Linker/MSYS-LLD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD-C) diff --git a/Modules/Platform/Linker/MSYS-LLD-CXX.cmake b/Modules/Platform/Linker/MSYS-LLD-CXX.cmake index 59d9abc..5d6a995 100644 --- a/Modules/Platform/Linker/MSYS-LLD-CXX.cmake +++ b/Modules/Platform/Linker/MSYS-LLD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD-CXX) diff --git a/Modules/Platform/Linker/MSYS-LLD-Fortran.cmake b/Modules/Platform/Linker/MSYS-LLD-Fortran.cmake index f705b91..f03e7e6 100644 --- a/Modules/Platform/Linker/MSYS-LLD-Fortran.cmake +++ b/Modules/Platform/Linker/MSYS-LLD-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/CYGWIN-LLD-Fortran) diff --git a/Modules/Platform/Linker/MirBSD-ASM.cmake b/Modules/Platform/Linker/MirBSD-ASM.cmake index d2c419e..9389eb2 100644 --- a/Modules/Platform/Linker/MirBSD-ASM.cmake +++ b/Modules/Platform/Linker/MirBSD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-ASM) diff --git a/Modules/Platform/Linker/MirBSD-C.cmake b/Modules/Platform/Linker/MirBSD-C.cmake index c59f251..c64b344 100644 --- a/Modules/Platform/Linker/MirBSD-C.cmake +++ b/Modules/Platform/Linker/MirBSD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-C) diff --git a/Modules/Platform/Linker/MirBSD-CXX.cmake b/Modules/Platform/Linker/MirBSD-CXX.cmake index 9a76d37..d13f2f7 100644 --- a/Modules/Platform/Linker/MirBSD-CXX.cmake +++ b/Modules/Platform/Linker/MirBSD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-CXX) diff --git a/Modules/Platform/Linker/MirBSD-Fortran.cmake b/Modules/Platform/Linker/MirBSD-Fortran.cmake index 9ab9886..fdb246d 100644 --- a/Modules/Platform/Linker/MirBSD-Fortran.cmake +++ b/Modules/Platform/Linker/MirBSD-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-Fortran) diff --git a/Modules/Platform/Linker/MirBSD-GNU-ASM.cmake b/Modules/Platform/Linker/MirBSD-GNU-ASM.cmake index f552a94..1a7788b 100644 --- a/Modules/Platform/Linker/MirBSD-GNU-ASM.cmake +++ b/Modules/Platform/Linker/MirBSD-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU-ASM) diff --git a/Modules/Platform/Linker/MirBSD-GNU-C.cmake b/Modules/Platform/Linker/MirBSD-GNU-C.cmake index ad337d0..7433430 100644 --- a/Modules/Platform/Linker/MirBSD-GNU-C.cmake +++ b/Modules/Platform/Linker/MirBSD-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU-C) diff --git a/Modules/Platform/Linker/MirBSD-GNU-CXX.cmake b/Modules/Platform/Linker/MirBSD-GNU-CXX.cmake index 1edb8e8..53174b7 100644 --- a/Modules/Platform/Linker/MirBSD-GNU-CXX.cmake +++ b/Modules/Platform/Linker/MirBSD-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU-CXX) diff --git a/Modules/Platform/Linker/MirBSD-GNU-Fortran.cmake b/Modules/Platform/Linker/MirBSD-GNU-Fortran.cmake index 70890a7..3877d19 100644 --- a/Modules/Platform/Linker/MirBSD-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/MirBSD-GNU-Fortran.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU-Fortran) diff --git a/Modules/Platform/Linker/NetBSD-ASM.cmake b/Modules/Platform/Linker/NetBSD-ASM.cmake index 72a9119..bbfab18 100644 --- a/Modules/Platform/Linker/NetBSD-ASM.cmake +++ b/Modules/Platform/Linker/NetBSD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/NetBSD-GNU-ASM) diff --git a/Modules/Platform/Linker/NetBSD-C.cmake b/Modules/Platform/Linker/NetBSD-C.cmake index 6e08344..024e5de 100644 --- a/Modules/Platform/Linker/NetBSD-C.cmake +++ b/Modules/Platform/Linker/NetBSD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/NetBSD-GNU-C) diff --git a/Modules/Platform/Linker/NetBSD-CXX.cmake b/Modules/Platform/Linker/NetBSD-CXX.cmake index 23d6cac..c57c6e6 100644 --- a/Modules/Platform/Linker/NetBSD-CXX.cmake +++ b/Modules/Platform/Linker/NetBSD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/NetBSD-GNU-CXX) diff --git a/Modules/Platform/Linker/NetBSD-Fortran.cmake b/Modules/Platform/Linker/NetBSD-Fortran.cmake index 6684127..9deb359 100644 --- a/Modules/Platform/Linker/NetBSD-Fortran.cmake +++ b/Modules/Platform/Linker/NetBSD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/NetBSD-GNU-Fortran) diff --git a/Modules/Platform/Linker/NetBSD-GNU-ASM.cmake b/Modules/Platform/Linker/NetBSD-GNU-ASM.cmake index 533589e..7dcb1ea 100644 --- a/Modules/Platform/Linker/NetBSD-GNU-ASM.cmake +++ b/Modules/Platform/Linker/NetBSD-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/NetBSD-GNU) diff --git a/Modules/Platform/Linker/NetBSD-GNU-C.cmake b/Modules/Platform/Linker/NetBSD-GNU-C.cmake index 2f00856..2882bef 100644 --- a/Modules/Platform/Linker/NetBSD-GNU-C.cmake +++ b/Modules/Platform/Linker/NetBSD-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/NetBSD-GNU) diff --git a/Modules/Platform/Linker/NetBSD-GNU-CXX.cmake b/Modules/Platform/Linker/NetBSD-GNU-CXX.cmake index 6e5da90..1e21529 100644 --- a/Modules/Platform/Linker/NetBSD-GNU-CXX.cmake +++ b/Modules/Platform/Linker/NetBSD-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/NetBSD-GNU) diff --git a/Modules/Platform/Linker/NetBSD-GNU-Fortran.cmake b/Modules/Platform/Linker/NetBSD-GNU-Fortran.cmake index 83d7784..76773e7 100644 --- a/Modules/Platform/Linker/NetBSD-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/NetBSD-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/NetBSD-GNU) diff --git a/Modules/Platform/Linker/NetBSD-GNU.cmake b/Modules/Platform/Linker/NetBSD-GNU.cmake index 226afcd..9c26654 100644 --- a/Modules/Platform/Linker/NetBSD-GNU.cmake +++ b/Modules/Platform/Linker/NetBSD-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/OpenBSD-ASM.cmake b/Modules/Platform/Linker/OpenBSD-ASM.cmake index 132d875..4fca12d 100644 --- a/Modules/Platform/Linker/OpenBSD-ASM.cmake +++ b/Modules/Platform/Linker/OpenBSD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/OpenBSD-C.cmake b/Modules/Platform/Linker/OpenBSD-C.cmake index b4147c6..deb3bba 100644 --- a/Modules/Platform/Linker/OpenBSD-C.cmake +++ b/Modules/Platform/Linker/OpenBSD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/OpenBSD-CXX.cmake b/Modules/Platform/Linker/OpenBSD-CXX.cmake index 75d4ff0..481f8e3 100644 --- a/Modules/Platform/Linker/OpenBSD-CXX.cmake +++ b/Modules/Platform/Linker/OpenBSD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/OpenBSD-Fortran.cmake b/Modules/Platform/Linker/OpenBSD-Fortran.cmake index a718403..e3883cc 100644 --- a/Modules/Platform/Linker/OpenBSD-Fortran.cmake +++ b/Modules/Platform/Linker/OpenBSD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/BSD-Linker-Initialize) diff --git a/Modules/Platform/Linker/OpenBSD-GNU-ASM.cmake b/Modules/Platform/Linker/OpenBSD-GNU-ASM.cmake index 6ad992d..f6181f4 100644 --- a/Modules/Platform/Linker/OpenBSD-GNU-ASM.cmake +++ b/Modules/Platform/Linker/OpenBSD-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU) diff --git a/Modules/Platform/Linker/OpenBSD-GNU-C.cmake b/Modules/Platform/Linker/OpenBSD-GNU-C.cmake index 64c8adf..3b23375 100644 --- a/Modules/Platform/Linker/OpenBSD-GNU-C.cmake +++ b/Modules/Platform/Linker/OpenBSD-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU) diff --git a/Modules/Platform/Linker/OpenBSD-GNU-CXX.cmake b/Modules/Platform/Linker/OpenBSD-GNU-CXX.cmake index 98668e56..5c6e7e6 100644 --- a/Modules/Platform/Linker/OpenBSD-GNU-CXX.cmake +++ b/Modules/Platform/Linker/OpenBSD-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU) diff --git a/Modules/Platform/Linker/OpenBSD-GNU-Fortran.cmake b/Modules/Platform/Linker/OpenBSD-GNU-Fortran.cmake index 0f2b11f..41e31c4 100644 --- a/Modules/Platform/Linker/OpenBSD-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/OpenBSD-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-GNU) diff --git a/Modules/Platform/Linker/OpenBSD-GNU.cmake b/Modules/Platform/Linker/OpenBSD-GNU.cmake index c5821bb..64086e7 100644 --- a/Modules/Platform/Linker/OpenBSD-GNU.cmake +++ b/Modules/Platform/Linker/OpenBSD-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/OpenBSD-LLD-ASM.cmake b/Modules/Platform/Linker/OpenBSD-LLD-ASM.cmake index 008e79a..7402ebe 100644 --- a/Modules/Platform/Linker/OpenBSD-LLD-ASM.cmake +++ b/Modules/Platform/Linker/OpenBSD-LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-LLD) diff --git a/Modules/Platform/Linker/OpenBSD-LLD-C.cmake b/Modules/Platform/Linker/OpenBSD-LLD-C.cmake index 20f8d12..e6aa698 100644 --- a/Modules/Platform/Linker/OpenBSD-LLD-C.cmake +++ b/Modules/Platform/Linker/OpenBSD-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-LLD) diff --git a/Modules/Platform/Linker/OpenBSD-LLD-CXX.cmake b/Modules/Platform/Linker/OpenBSD-LLD-CXX.cmake index d0fd59f..be3ae42 100644 --- a/Modules/Platform/Linker/OpenBSD-LLD-CXX.cmake +++ b/Modules/Platform/Linker/OpenBSD-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-LLD) diff --git a/Modules/Platform/Linker/OpenBSD-LLD-Fortran.cmake b/Modules/Platform/Linker/OpenBSD-LLD-Fortran.cmake index 55efce3..e5a2dd7 100644 --- a/Modules/Platform/Linker/OpenBSD-LLD-Fortran.cmake +++ b/Modules/Platform/Linker/OpenBSD-LLD-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/OpenBSD-LLD) diff --git a/Modules/Platform/Linker/OpenBSD-LLD.cmake b/Modules/Platform/Linker/OpenBSD-LLD.cmake index 05a1017..a942627 100644 --- a/Modules/Platform/Linker/OpenBSD-LLD.cmake +++ b/Modules/Platform/Linker/OpenBSD-LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/SerenityOS-ASM.cmake b/Modules/Platform/Linker/SerenityOS-ASM.cmake index 98fe46f..def96b4 100644 --- a/Modules/Platform/Linker/SerenityOS-ASM.cmake +++ b/Modules/Platform/Linker/SerenityOS-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/SerenityOS-GNU-ASM) diff --git a/Modules/Platform/Linker/SerenityOS-C.cmake b/Modules/Platform/Linker/SerenityOS-C.cmake index d4aa953..0fcbb35 100644 --- a/Modules/Platform/Linker/SerenityOS-C.cmake +++ b/Modules/Platform/Linker/SerenityOS-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/SerenityOS-GNU-C) diff --git a/Modules/Platform/Linker/SerenityOS-CXX.cmake b/Modules/Platform/Linker/SerenityOS-CXX.cmake index 34e9311..102dae4 100644 --- a/Modules/Platform/Linker/SerenityOS-CXX.cmake +++ b/Modules/Platform/Linker/SerenityOS-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # GNU is the default linker include(Platform/Linker/SerenityOS-GNU-CXX) diff --git a/Modules/Platform/Linker/SerenityOS-GNU-ASM.cmake b/Modules/Platform/Linker/SerenityOS-GNU-ASM.cmake index 3ea7242..55bcafc 100644 --- a/Modules/Platform/Linker/SerenityOS-GNU-ASM.cmake +++ b/Modules/Platform/Linker/SerenityOS-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SerenityOS-GNU) diff --git a/Modules/Platform/Linker/SerenityOS-GNU-C.cmake b/Modules/Platform/Linker/SerenityOS-GNU-C.cmake index c66d797..53304d7 100644 --- a/Modules/Platform/Linker/SerenityOS-GNU-C.cmake +++ b/Modules/Platform/Linker/SerenityOS-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SerenityOS-GNU) diff --git a/Modules/Platform/Linker/SerenityOS-GNU-CXX.cmake b/Modules/Platform/Linker/SerenityOS-GNU-CXX.cmake index ff1f677..d71b992 100644 --- a/Modules/Platform/Linker/SerenityOS-GNU-CXX.cmake +++ b/Modules/Platform/Linker/SerenityOS-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SerenityOS-GNU) diff --git a/Modules/Platform/Linker/SerenityOS-GNU.cmake b/Modules/Platform/Linker/SerenityOS-GNU.cmake index 45f6505..0e7013c 100644 --- a/Modules/Platform/Linker/SerenityOS-GNU.cmake +++ b/Modules/Platform/Linker/SerenityOS-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/SerenityOS-LLD-ASM.cmake b/Modules/Platform/Linker/SerenityOS-LLD-ASM.cmake index 23be6bd..f292d76 100644 --- a/Modules/Platform/Linker/SerenityOS-LLD-ASM.cmake +++ b/Modules/Platform/Linker/SerenityOS-LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SerenityOS-LLD) diff --git a/Modules/Platform/Linker/SerenityOS-LLD-C.cmake b/Modules/Platform/Linker/SerenityOS-LLD-C.cmake index 43b077c..cbad193 100644 --- a/Modules/Platform/Linker/SerenityOS-LLD-C.cmake +++ b/Modules/Platform/Linker/SerenityOS-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SerenityOS-LLD) diff --git a/Modules/Platform/Linker/SerenityOS-LLD-CXX.cmake b/Modules/Platform/Linker/SerenityOS-LLD-CXX.cmake index 95851ca..5e18be1 100644 --- a/Modules/Platform/Linker/SerenityOS-LLD-CXX.cmake +++ b/Modules/Platform/Linker/SerenityOS-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SerenityOS-LLD) diff --git a/Modules/Platform/Linker/SerenityOS-LLD.cmake b/Modules/Platform/Linker/SerenityOS-LLD.cmake index f3c0389..4aa38ae 100644 --- a/Modules/Platform/Linker/SerenityOS-LLD.cmake +++ b/Modules/Platform/Linker/SerenityOS-LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/SunOS-ASM.cmake b/Modules/Platform/Linker/SunOS-ASM.cmake index 0013e0b..a2aa9f2 100644 --- a/Modules/Platform/Linker/SunOS-ASM.cmake +++ b/Modules/Platform/Linker/SunOS-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Solaris is the default linker include(Platform/Linker/SunOS-Solaris-ASM) diff --git a/Modules/Platform/Linker/SunOS-C.cmake b/Modules/Platform/Linker/SunOS-C.cmake index fe90f6a..c4505ea 100644 --- a/Modules/Platform/Linker/SunOS-C.cmake +++ b/Modules/Platform/Linker/SunOS-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Solaris is the default linker include(Platform/Linker/SunOS-Solaris-C) diff --git a/Modules/Platform/Linker/SunOS-CXX.cmake b/Modules/Platform/Linker/SunOS-CXX.cmake index 0111500..9fc062f 100644 --- a/Modules/Platform/Linker/SunOS-CXX.cmake +++ b/Modules/Platform/Linker/SunOS-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Solaris is the default linker include(Platform/Linker/SunOS-Solaris-CXX) diff --git a/Modules/Platform/Linker/SunOS-Fortran.cmake b/Modules/Platform/Linker/SunOS-Fortran.cmake index 6252846..cbb0cf7 100644 --- a/Modules/Platform/Linker/SunOS-Fortran.cmake +++ b/Modules/Platform/Linker/SunOS-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Solaris is the default linker include(Platform/Linker/SunOS-Solaris-Fortran) diff --git a/Modules/Platform/Linker/SunOS-GNU-ASM.cmake b/Modules/Platform/Linker/SunOS-GNU-ASM.cmake index d69b617..1b3e5fe 100644 --- a/Modules/Platform/Linker/SunOS-GNU-ASM.cmake +++ b/Modules/Platform/Linker/SunOS-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-GNU) diff --git a/Modules/Platform/Linker/SunOS-GNU-C.cmake b/Modules/Platform/Linker/SunOS-GNU-C.cmake index 76554ce..ae48a9b 100644 --- a/Modules/Platform/Linker/SunOS-GNU-C.cmake +++ b/Modules/Platform/Linker/SunOS-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-GNU) diff --git a/Modules/Platform/Linker/SunOS-GNU-CXX.cmake b/Modules/Platform/Linker/SunOS-GNU-CXX.cmake index 68b2d8c..0c8e982 100644 --- a/Modules/Platform/Linker/SunOS-GNU-CXX.cmake +++ b/Modules/Platform/Linker/SunOS-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-GNU) diff --git a/Modules/Platform/Linker/SunOS-GNU-Fortran.cmake b/Modules/Platform/Linker/SunOS-GNU-Fortran.cmake index 1a7565d..0ed73f3 100644 --- a/Modules/Platform/Linker/SunOS-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/SunOS-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-GNU) diff --git a/Modules/Platform/Linker/SunOS-GNU.cmake b/Modules/Platform/Linker/SunOS-GNU.cmake index ae9697d..0c3b230 100644 --- a/Modules/Platform/Linker/SunOS-GNU.cmake +++ b/Modules/Platform/Linker/SunOS-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/SunOS-Solaris-ASM.cmake b/Modules/Platform/Linker/SunOS-Solaris-ASM.cmake index 35ad149..79c0c2f 100644 --- a/Modules/Platform/Linker/SunOS-Solaris-ASM.cmake +++ b/Modules/Platform/Linker/SunOS-Solaris-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-Solaris) diff --git a/Modules/Platform/Linker/SunOS-Solaris-C.cmake b/Modules/Platform/Linker/SunOS-Solaris-C.cmake index 6251dcc..a50f50a 100644 --- a/Modules/Platform/Linker/SunOS-Solaris-C.cmake +++ b/Modules/Platform/Linker/SunOS-Solaris-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-Solaris) diff --git a/Modules/Platform/Linker/SunOS-Solaris-CXX.cmake b/Modules/Platform/Linker/SunOS-Solaris-CXX.cmake index f6e2645..b7dc363 100644 --- a/Modules/Platform/Linker/SunOS-Solaris-CXX.cmake +++ b/Modules/Platform/Linker/SunOS-Solaris-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-Solaris) diff --git a/Modules/Platform/Linker/SunOS-Solaris-Fortran.cmake b/Modules/Platform/Linker/SunOS-Solaris-Fortran.cmake index f55b9f2..9b81034 100644 --- a/Modules/Platform/Linker/SunOS-Solaris-Fortran.cmake +++ b/Modules/Platform/Linker/SunOS-Solaris-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/SunOS-Solaris) diff --git a/Modules/Platform/Linker/SunOS-Solaris.cmake b/Modules/Platform/Linker/SunOS-Solaris.cmake index 2aff3aa..f2de596 100644 --- a/Modules/Platform/Linker/SunOS-Solaris.cmake +++ b/Modules/Platform/Linker/SunOS-Solaris.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Windows-ASM.cmake b/Modules/Platform/Linker/Windows-ASM.cmake index b6e9ab3..472b7a2 100644 --- a/Modules/Platform/Linker/Windows-ASM.cmake +++ b/Modules/Platform/Linker/Windows-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_ASM_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/Windows-C.cmake b/Modules/Platform/Linker/Windows-C.cmake index bb663e3..26a0f0c 100644 --- a/Modules/Platform/Linker/Windows-C.cmake +++ b/Modules/Platform/Linker/Windows-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/Windows-CUDA.cmake b/Modules/Platform/Linker/Windows-CUDA.cmake index 7e89791..ed38100 100644 --- a/Modules/Platform/Linker/Windows-CUDA.cmake +++ b/Modules/Platform/Linker/Windows-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/Windows-MSVC-CUDA) diff --git a/Modules/Platform/Linker/Windows-CXX.cmake b/Modules/Platform/Linker/Windows-CXX.cmake index adaeb05..b425be5 100644 --- a/Modules/Platform/Linker/Windows-CXX.cmake +++ b/Modules/Platform/Linker/Windows-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/Windows-Fortran.cmake b/Modules/Platform/Linker/Windows-Fortran.cmake index 9a2fcbc..d145a90 100644 --- a/Modules/Platform/Linker/Windows-Fortran.cmake +++ b/Modules/Platform/Linker/Windows-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_Fortran_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/Windows-GNU-ASM.cmake b/Modules/Platform/Linker/Windows-GNU-ASM.cmake index 7fac7b1..1087ccc 100644 --- a/Modules/Platform/Linker/Windows-GNU-ASM.cmake +++ b/Modules/Platform/Linker/Windows-GNU-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU) diff --git a/Modules/Platform/Linker/Windows-GNU-C.cmake b/Modules/Platform/Linker/Windows-GNU-C.cmake index 833a64d..21cff04 100644 --- a/Modules/Platform/Linker/Windows-GNU-C.cmake +++ b/Modules/Platform/Linker/Windows-GNU-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU) diff --git a/Modules/Platform/Linker/Windows-GNU-CXX.cmake b/Modules/Platform/Linker/Windows-GNU-CXX.cmake index 6bc1af0..d15b5e7 100644 --- a/Modules/Platform/Linker/Windows-GNU-CXX.cmake +++ b/Modules/Platform/Linker/Windows-GNU-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU) diff --git a/Modules/Platform/Linker/Windows-GNU-Fortran.cmake b/Modules/Platform/Linker/Windows-GNU-Fortran.cmake index 4f0c35f..b3a4f23 100644 --- a/Modules/Platform/Linker/Windows-GNU-Fortran.cmake +++ b/Modules/Platform/Linker/Windows-GNU-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU) diff --git a/Modules/Platform/Linker/Windows-GNU-HIP.cmake b/Modules/Platform/Linker/Windows-GNU-HIP.cmake index 4814888..283bd76 100644 --- a/Modules/Platform/Linker/Windows-GNU-HIP.cmake +++ b/Modules/Platform/Linker/Windows-GNU-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU) diff --git a/Modules/Platform/Linker/Windows-GNU.cmake b/Modules/Platform/Linker/Windows-GNU.cmake index 144b03e..c5a968f 100644 --- a/Modules/Platform/Linker/Windows-GNU.cmake +++ b/Modules/Platform/Linker/Windows-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Windows-HIP.cmake b/Modules/Platform/Linker/Windows-HIP.cmake index d215fc9..e45055f 100644 --- a/Modules/Platform/Linker/Windows-HIP.cmake +++ b/Modules/Platform/Linker/Windows-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_HIP_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/Windows-LLD-ASM.cmake b/Modules/Platform/Linker/Windows-LLD-ASM.cmake index fbcc55d..6e735de 100644 --- a/Modules/Platform/Linker/Windows-LLD-ASM.cmake +++ b/Modules/Platform/Linker/Windows-LLD-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD) diff --git a/Modules/Platform/Linker/Windows-LLD-C.cmake b/Modules/Platform/Linker/Windows-LLD-C.cmake index 8efd87e..c16f384 100644 --- a/Modules/Platform/Linker/Windows-LLD-C.cmake +++ b/Modules/Platform/Linker/Windows-LLD-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD) diff --git a/Modules/Platform/Linker/Windows-LLD-CXX.cmake b/Modules/Platform/Linker/Windows-LLD-CXX.cmake index 7bd3131..2449f28 100644 --- a/Modules/Platform/Linker/Windows-LLD-CXX.cmake +++ b/Modules/Platform/Linker/Windows-LLD-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD) diff --git a/Modules/Platform/Linker/Windows-LLD-HIP.cmake b/Modules/Platform/Linker/Windows-LLD-HIP.cmake index 4b04a79..384b5ea 100644 --- a/Modules/Platform/Linker/Windows-LLD-HIP.cmake +++ b/Modules/Platform/Linker/Windows-LLD-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD) diff --git a/Modules/Platform/Linker/Windows-LLD.cmake b/Modules/Platform/Linker/Windows-LLD.cmake index 9c56de2..696b342 100644 --- a/Modules/Platform/Linker/Windows-LLD.cmake +++ b/Modules/Platform/Linker/Windows-LLD.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Windows-MSVC-ASM.cmake b/Modules/Platform/Linker/Windows-MSVC-ASM.cmake index df3a64b..ae15f52 100644 --- a/Modules/Platform/Linker/Windows-MSVC-ASM.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC-C.cmake b/Modules/Platform/Linker/Windows-MSVC-C.cmake index 467c0f3..28339cc 100644 --- a/Modules/Platform/Linker/Windows-MSVC-C.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC-CUDA.cmake b/Modules/Platform/Linker/Windows-MSVC-CUDA.cmake index dc3d5e9..02938ef 100644 --- a/Modules/Platform/Linker/Windows-MSVC-CUDA.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-CUDA.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC-CXX.cmake b/Modules/Platform/Linker/Windows-MSVC-CXX.cmake index f5d3294..df1dbb5 100644 --- a/Modules/Platform/Linker/Windows-MSVC-CXX.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC-Fortran.cmake b/Modules/Platform/Linker/Windows-MSVC-Fortran.cmake index b5f99f3..8c39540 100644 --- a/Modules/Platform/Linker/Windows-MSVC-Fortran.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-Fortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC-HIP.cmake b/Modules/Platform/Linker/Windows-MSVC-HIP.cmake index cc2a7da..0176db0 100644 --- a/Modules/Platform/Linker/Windows-MSVC-HIP.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-HIP.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC-Swift.cmake b/Modules/Platform/Linker/Windows-MSVC-Swift.cmake index c29af13..03c31ee 100644 --- a/Modules/Platform/Linker/Windows-MSVC-Swift.cmake +++ b/Modules/Platform/Linker/Windows-MSVC-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC) diff --git a/Modules/Platform/Linker/Windows-MSVC.cmake b/Modules/Platform/Linker/Windows-MSVC.cmake index 491b899..d4e819c 100644 --- a/Modules/Platform/Linker/Windows-MSVC.cmake +++ b/Modules/Platform/Linker/Windows-MSVC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linker/Windows-Swift.cmake b/Modules/Platform/Linker/Windows-Swift.cmake index 9478d04..10386c3 100644 --- a/Modules/Platform/Linker/Windows-Swift.cmake +++ b/Modules/Platform/Linker/Windows-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/Windows-MSVC-Swift) diff --git a/Modules/Platform/Linker/WindowsCE-C.cmake b/Modules/Platform/Linker/WindowsCE-C.cmake index 2e30d91..35b75a8 100644 --- a/Modules/Platform/Linker/WindowsCE-C.cmake +++ b/Modules/Platform/Linker/WindowsCE-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/WindowsCE-MSVC-C) diff --git a/Modules/Platform/Linker/WindowsCE-CXX.cmake b/Modules/Platform/Linker/WindowsCE-CXX.cmake index e61470c..2cf7008 100644 --- a/Modules/Platform/Linker/WindowsCE-CXX.cmake +++ b/Modules/Platform/Linker/WindowsCE-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/WindowsCE-MSVC-CXX) diff --git a/Modules/Platform/Linker/WindowsCE-MSVC-C.cmake b/Modules/Platform/Linker/WindowsCE-MSVC-C.cmake index 297a160..b1ab444 100644 --- a/Modules/Platform/Linker/WindowsCE-MSVC-C.cmake +++ b/Modules/Platform/Linker/WindowsCE-MSVC-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-C) diff --git a/Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake b/Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake index 7accb62..08b9896 100644 --- a/Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake +++ b/Modules/Platform/Linker/WindowsCE-MSVC-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-CXX) diff --git a/Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake b/Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake index 7d6f303..c39f955 100644 --- a/Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake +++ b/Modules/Platform/Linker/WindowsKernelModeDriver-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/WindowsKernelModeDriver-MSVC-C) diff --git a/Modules/Platform/Linker/WindowsKernelModeDriver-CXX.cmake b/Modules/Platform/Linker/WindowsKernelModeDriver-CXX.cmake index ad69d95..3d173a2 100644 --- a/Modules/Platform/Linker/WindowsKernelModeDriver-CXX.cmake +++ b/Modules/Platform/Linker/WindowsKernelModeDriver-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/WindowsKernelModeDriver-MSVC-CXX) diff --git a/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-C.cmake b/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-C.cmake index 297a160..b1ab444 100644 --- a/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-C.cmake +++ b/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-C) diff --git a/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-CXX.cmake b/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-CXX.cmake index 7accb62..08b9896 100644 --- a/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-CXX.cmake +++ b/Modules/Platform/Linker/WindowsKernelModeDriver-MSVC-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-CXX) diff --git a/Modules/Platform/Linker/WindowsPhone-ASM.cmake b/Modules/Platform/Linker/WindowsPhone-ASM.cmake index 1bfb6ec..89d040d 100644 --- a/Modules/Platform/Linker/WindowsPhone-ASM.cmake +++ b/Modules/Platform/Linker/WindowsPhone-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_ASM_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/WindowsPhone-C.cmake b/Modules/Platform/Linker/WindowsPhone-C.cmake index 0dde95c..47630e4 100644 --- a/Modules/Platform/Linker/WindowsPhone-C.cmake +++ b/Modules/Platform/Linker/WindowsPhone-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/WindowsPhone-CXX.cmake b/Modules/Platform/Linker/WindowsPhone-CXX.cmake index 88234b0..18301ce 100644 --- a/Modules/Platform/Linker/WindowsPhone-CXX.cmake +++ b/Modules/Platform/Linker/WindowsPhone-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake b/Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake index ec93c6b..cb42902 100644 --- a/Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake +++ b/Modules/Platform/Linker/WindowsPhone-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU-ASM) diff --git a/Modules/Platform/Linker/WindowsPhone-GNU-C.cmake b/Modules/Platform/Linker/WindowsPhone-GNU-C.cmake index 7a023b8..f91bfca 100644 --- a/Modules/Platform/Linker/WindowsPhone-GNU-C.cmake +++ b/Modules/Platform/Linker/WindowsPhone-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU-C) diff --git a/Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake b/Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake index 2a71ff6..20369f5 100644 --- a/Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake +++ b/Modules/Platform/Linker/WindowsPhone-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU-CXX) diff --git a/Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake b/Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake index 71db4da..8e71706 100644 --- a/Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake +++ b/Modules/Platform/Linker/WindowsPhone-LLD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD-ASM) diff --git a/Modules/Platform/Linker/WindowsPhone-LLD-C.cmake b/Modules/Platform/Linker/WindowsPhone-LLD-C.cmake index 8b1415f..8843f37 100644 --- a/Modules/Platform/Linker/WindowsPhone-LLD-C.cmake +++ b/Modules/Platform/Linker/WindowsPhone-LLD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD-C) diff --git a/Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake b/Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake index fc6c9ea..9c397ce 100644 --- a/Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake +++ b/Modules/Platform/Linker/WindowsPhone-LLD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD-CXX) diff --git a/Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake b/Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake index a891d7c..159e4df 100644 --- a/Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake +++ b/Modules/Platform/Linker/WindowsPhone-MSVC-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-ASM) diff --git a/Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake b/Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake index 297a160..b1ab444 100644 --- a/Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake +++ b/Modules/Platform/Linker/WindowsPhone-MSVC-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-C) diff --git a/Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake b/Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake index 7accb62..08b9896 100644 --- a/Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake +++ b/Modules/Platform/Linker/WindowsPhone-MSVC-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-CXX) diff --git a/Modules/Platform/Linker/WindowsPhone-MSVC-Swift.cmake b/Modules/Platform/Linker/WindowsPhone-MSVC-Swift.cmake index 44d5b2d..41e8667 100644 --- a/Modules/Platform/Linker/WindowsPhone-MSVC-Swift.cmake +++ b/Modules/Platform/Linker/WindowsPhone-MSVC-Swift.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-Swift) diff --git a/Modules/Platform/Linker/WindowsPhone-Swift.cmake b/Modules/Platform/Linker/WindowsPhone-Swift.cmake index 6d59769..b2489cd 100644 --- a/Modules/Platform/Linker/WindowsPhone-Swift.cmake +++ b/Modules/Platform/Linker/WindowsPhone-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/WindowsPhone-MSVC-Swift) diff --git a/Modules/Platform/Linker/WindowsStore-ASM.cmake b/Modules/Platform/Linker/WindowsStore-ASM.cmake index a059405..7e317f3 100644 --- a/Modules/Platform/Linker/WindowsStore-ASM.cmake +++ b/Modules/Platform/Linker/WindowsStore-ASM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_ASM_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/WindowsStore-C.cmake b/Modules/Platform/Linker/WindowsStore-C.cmake index 14fcd3b..46d3c03 100644 --- a/Modules/Platform/Linker/WindowsStore-C.cmake +++ b/Modules/Platform/Linker/WindowsStore-C.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/WindowsStore-CXX.cmake b/Modules/Platform/Linker/WindowsStore-CXX.cmake index a74830c..810794d 100644 --- a/Modules/Platform/Linker/WindowsStore-CXX.cmake +++ b/Modules/Platform/Linker/WindowsStore-CXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC") # MSVC is the default linker diff --git a/Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake b/Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake index ec93c6b..cb42902 100644 --- a/Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake +++ b/Modules/Platform/Linker/WindowsStore-GNU-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU-ASM) diff --git a/Modules/Platform/Linker/WindowsStore-GNU-C.cmake b/Modules/Platform/Linker/WindowsStore-GNU-C.cmake index 7a023b8..f91bfca 100644 --- a/Modules/Platform/Linker/WindowsStore-GNU-C.cmake +++ b/Modules/Platform/Linker/WindowsStore-GNU-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU-C) diff --git a/Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake b/Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake index 2a71ff6..20369f5 100644 --- a/Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake +++ b/Modules/Platform/Linker/WindowsStore-GNU-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-GNU-CXX) diff --git a/Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake b/Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake index 71db4da..8e71706 100644 --- a/Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake +++ b/Modules/Platform/Linker/WindowsStore-LLD-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD-ASM) diff --git a/Modules/Platform/Linker/WindowsStore-LLD-C.cmake b/Modules/Platform/Linker/WindowsStore-LLD-C.cmake index 8b1415f..8843f37 100644 --- a/Modules/Platform/Linker/WindowsStore-LLD-C.cmake +++ b/Modules/Platform/Linker/WindowsStore-LLD-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD-C) diff --git a/Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake b/Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake index fc6c9ea..9c397ce 100644 --- a/Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake +++ b/Modules/Platform/Linker/WindowsStore-LLD-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-LLD-CXX) diff --git a/Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake b/Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake index a891d7c..159e4df 100644 --- a/Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake +++ b/Modules/Platform/Linker/WindowsStore-MSVC-ASM.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-ASM) diff --git a/Modules/Platform/Linker/WindowsStore-MSVC-C.cmake b/Modules/Platform/Linker/WindowsStore-MSVC-C.cmake index 297a160..b1ab444 100644 --- a/Modules/Platform/Linker/WindowsStore-MSVC-C.cmake +++ b/Modules/Platform/Linker/WindowsStore-MSVC-C.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-C) diff --git a/Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake b/Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake index 7accb62..08b9896 100644 --- a/Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake +++ b/Modules/Platform/Linker/WindowsStore-MSVC-CXX.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-CXX) diff --git a/Modules/Platform/Linker/WindowsStore-MSVC-Swift.cmake b/Modules/Platform/Linker/WindowsStore-MSVC-Swift.cmake index 44d5b2d..41e8667 100644 --- a/Modules/Platform/Linker/WindowsStore-MSVC-Swift.cmake +++ b/Modules/Platform/Linker/WindowsStore-MSVC-Swift.cmake @@ -1,4 +1,4 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(Platform/Linker/Windows-MSVC-Swift) diff --git a/Modules/Platform/Linker/WindowsStore-Swift.cmake b/Modules/Platform/Linker/WindowsStore-Swift.cmake index 9262564..6795a56 100644 --- a/Modules/Platform/Linker/WindowsStore-Swift.cmake +++ b/Modules/Platform/Linker/WindowsStore-Swift.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # MSVC is the default linker include(Platform/Linker/WindowsStore-MSVC-Swift) diff --git a/Modules/Platform/Linux-Fujitsu.cmake b/Modules/Platform/Linux-Fujitsu.cmake index be11b0a..e41bf54 100644 --- a/Modules/Platform/Linux-Fujitsu.cmake +++ b/Modules/Platform/Linux-Fujitsu.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-GNU.cmake b/Modules/Platform/Linux-GNU.cmake index 24bf1bb..66e3a7e 100644 --- a/Modules/Platform/Linux-GNU.cmake +++ b/Modules/Platform/Linux-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-Intel.cmake b/Modules/Platform/Linux-Intel.cmake index 95debf9..73ba6d7 100644 --- a/Modules/Platform/Linux-Intel.cmake +++ b/Modules/Platform/Linux-Intel.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-IntelLLVM.cmake b/Modules/Platform/Linux-IntelLLVM.cmake index 992f80e..fd7064f 100644 --- a/Modules/Platform/Linux-IntelLLVM.cmake +++ b/Modules/Platform/Linux-IntelLLVM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-LCC.cmake b/Modules/Platform/Linux-LCC.cmake index a375461..6badc89 100644 --- a/Modules/Platform/Linux-LCC.cmake +++ b/Modules/Platform/Linux-LCC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-NVHPC.cmake b/Modules/Platform/Linux-NVHPC.cmake index 602b417..f6a0f3d 100644 --- a/Modules/Platform/Linux-NVHPC.cmake +++ b/Modules/Platform/Linux-NVHPC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-OpenWatcom.cmake b/Modules/Platform/Linux-OpenWatcom.cmake index 731fd3c..840c918 100644 --- a/Modules/Platform/Linux-OpenWatcom.cmake +++ b/Modules/Platform/Linux-OpenWatcom.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. include_guard() diff --git a/Modules/Platform/Linux-PGI.cmake b/Modules/Platform/Linux-PGI.cmake index 0341654..c1a6155 100644 --- a/Modules/Platform/Linux-PGI.cmake +++ b/Modules/Platform/Linux-PGI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Linux-PathScale.cmake b/Modules/Platform/Linux-PathScale.cmake index 6070606..19f69b0 100644 --- a/Modules/Platform/Linux-PathScale.cmake +++ b/Modules/Platform/Linux-PathScale.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/SunOS-GNU.cmake b/Modules/Platform/SunOS-GNU.cmake index 47334d6..4c231bf 100644 --- a/Modules/Platform/SunOS-GNU.cmake +++ b/Modules/Platform/SunOS-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/SunOS-PathScale.cmake b/Modules/Platform/SunOS-PathScale.cmake index 25ead80..b479f66 100644 --- a/Modules/Platform/SunOS-PathScale.cmake +++ b/Modules/Platform/SunOS-PathScale.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/UnixPaths.cmake b/Modules/Platform/UnixPaths.cmake index 32bc7bd..e95da44 100644 --- a/Modules/Platform/UnixPaths.cmake +++ b/Modules/Platform/UnixPaths.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Block multiple inclusion because "CMakeCInformation.cmake" includes diff --git a/Modules/Platform/Windows-Clang.cmake b/Modules/Platform/Windows-Clang.cmake index 3f57b50..c6dc423 100644 --- a/Modules/Platform/Windows-Clang.cmake +++ b/Modules/Platform/Windows-Clang.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows-Embarcadero.cmake b/Modules/Platform/Windows-Embarcadero.cmake index 4ecc2c2..ad5bb1c 100644 --- a/Modules/Platform/Windows-Embarcadero.cmake +++ b/Modules/Platform/Windows-Embarcadero.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows-GNU.cmake b/Modules/Platform/Windows-GNU.cmake index 9682a9a..ea7b77b 100644 --- a/Modules/Platform/Windows-GNU.cmake +++ b/Modules/Platform/Windows-GNU.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows-Intel.cmake b/Modules/Platform/Windows-Intel.cmake index 26e0cde..12598a0 100644 --- a/Modules/Platform/Windows-Intel.cmake +++ b/Modules/Platform/Windows-Intel.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows-IntelLLVM.cmake b/Modules/Platform/Windows-IntelLLVM.cmake index 363735a..2b9d83b 100644 --- a/Modules/Platform/Windows-IntelLLVM.cmake +++ b/Modules/Platform/Windows-IntelLLVM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows-MSVC.cmake b/Modules/Platform/Windows-MSVC.cmake index 0240443..6dce85b 100644 --- a/Modules/Platform/Windows-MSVC.cmake +++ b/Modules/Platform/Windows-MSVC.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows-OpenWatcom.cmake b/Modules/Platform/Windows-OpenWatcom.cmake index 3e9795e..05d5069 100644 --- a/Modules/Platform/Windows-OpenWatcom.cmake +++ b/Modules/Platform/Windows-OpenWatcom.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. include_guard() diff --git a/Modules/Platform/Windows-PGI.cmake b/Modules/Platform/Windows-PGI.cmake index 8166240..ae68eba 100644 --- a/Modules/Platform/Windows-PGI.cmake +++ b/Modules/Platform/Windows-PGI.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. diff --git a/Modules/Platform/Windows3x-OpenWatcom.cmake b/Modules/Platform/Windows3x-OpenWatcom.cmake index 0882df6..c1647d3 100644 --- a/Modules/Platform/Windows3x-OpenWatcom.cmake +++ b/Modules/Platform/Windows3x-OpenWatcom.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This module is shared by multiple languages; use include blocker. include_guard() diff --git a/Modules/Platform/WindowsPaths.cmake b/Modules/Platform/WindowsPaths.cmake index de93338..c56dfaf 100644 --- a/Modules/Platform/WindowsPaths.cmake +++ b/Modules/Platform/WindowsPaths.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Block multiple inclusion because "CMakeCInformation.cmake" includes diff --git a/Modules/ProcessorCount.cmake b/Modules/ProcessorCount.cmake index 9e1d473..13d708f 100644 --- a/Modules/ProcessorCount.cmake +++ b/Modules/ProcessorCount.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: ProcessorCount diff --git a/Modules/Qt4ConfigDependentSettings.cmake b/Modules/Qt4ConfigDependentSettings.cmake index bef905a..f20589e 100644 --- a/Modules/Qt4ConfigDependentSettings.cmake +++ b/Modules/Qt4ConfigDependentSettings.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Qt4ConfigDependentSettings diff --git a/Modules/Qt4Macros.cmake b/Modules/Qt4Macros.cmake index cb6ae43..eee413b 100644 --- a/Modules/Qt4Macros.cmake +++ b/Modules/Qt4Macros.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Qt4Macros diff --git a/Modules/SelectLibraryConfigurations.cmake b/Modules/SelectLibraryConfigurations.cmake index 4c0e9a8..7227367 100644 --- a/Modules/SelectLibraryConfigurations.cmake +++ b/Modules/SelectLibraryConfigurations.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: SelectLibraryConfigurations diff --git a/Modules/SquishTestScript.cmake b/Modules/SquishTestScript.cmake index d3f8ebf..784939e 100644 --- a/Modules/SquishTestScript.cmake +++ b/Modules/SquishTestScript.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: SquishTestScript diff --git a/Modules/SystemInformation.cmake b/Modules/SystemInformation.cmake index 0ef4888..84a40db 100644 --- a/Modules/SystemInformation.cmake +++ b/Modules/SystemInformation.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION ${CMAKE_VERSION}) diff --git a/Modules/TestBigEndian.cmake b/Modules/TestBigEndian.cmake index 8962156..a64303d 100644 --- a/Modules/TestBigEndian.cmake +++ b/Modules/TestBigEndian.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: TestBigEndian diff --git a/Modules/TestCXXAcceptsFlag.cmake b/Modules/TestCXXAcceptsFlag.cmake index 023d6ba..239db61 100644 --- a/Modules/TestCXXAcceptsFlag.cmake +++ b/Modules/TestCXXAcceptsFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: TestCXXAcceptsFlag diff --git a/Modules/TestForANSIForScope.cmake b/Modules/TestForANSIForScope.cmake index d73b1df..1224a21 100644 --- a/Modules/TestForANSIForScope.cmake +++ b/Modules/TestForANSIForScope.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: TestForANSIForScope diff --git a/Modules/TestForANSIStreamHeaders.cmake b/Modules/TestForANSIStreamHeaders.cmake index e3b93b0..d156991 100644 --- a/Modules/TestForANSIStreamHeaders.cmake +++ b/Modules/TestForANSIStreamHeaders.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: TestForANSIStreamHeaders diff --git a/Modules/TestForSSTREAM.cmake b/Modules/TestForSSTREAM.cmake index 9780269..40fb373 100644 --- a/Modules/TestForSSTREAM.cmake +++ b/Modules/TestForSSTREAM.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: TestForSSTREAM diff --git a/Modules/TestForSTDNamespace.cmake b/Modules/TestForSTDNamespace.cmake index 31ed993..e565e5c 100644 --- a/Modules/TestForSTDNamespace.cmake +++ b/Modules/TestForSTDNamespace.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: TestForSTDNamespace diff --git a/Modules/UseEcos.cmake b/Modules/UseEcos.cmake index 0b07723..c217dcc 100644 --- a/Modules/UseEcos.cmake +++ b/Modules/UseEcos.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: UseEcos diff --git a/Modules/UseJava.cmake b/Modules/UseJava.cmake index 6c6acd7..b977d95 100644 --- a/Modules/UseJava.cmake +++ b/Modules/UseJava.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: UseJava diff --git a/Modules/UseJava/ClassFilelist.cmake b/Modules/UseJava/ClassFilelist.cmake index aa9e35d..371094e 100644 --- a/Modules/UseJava/ClassFilelist.cmake +++ b/Modules/UseJava/ClassFilelist.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This script creates a list of compiled Java class files to be added to # a jar file. This avoids including cmake files which get created in diff --git a/Modules/UseJava/ClearClassFiles.cmake b/Modules/UseJava/ClearClassFiles.cmake index 42a7666..2e28080 100644 --- a/Modules/UseJava/ClearClassFiles.cmake +++ b/Modules/UseJava/ClearClassFiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This script deletes compiled Java class files. diff --git a/Modules/UseJava/Symlinks.cmake b/Modules/UseJava/Symlinks.cmake index 2788195..3142dca 100644 --- a/Modules/UseJava/Symlinks.cmake +++ b/Modules/UseJava/Symlinks.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Helper script for UseJava.cmake diff --git a/Modules/UsePkgConfig.cmake b/Modules/UsePkgConfig.cmake index 1397889..3771db1 100644 --- a/Modules/UsePkgConfig.cmake +++ b/Modules/UsePkgConfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: UsePkgConfig diff --git a/Modules/UseQt4.cmake b/Modules/UseQt4.cmake index 64f0746..2b8146c 100644 --- a/Modules/UseQt4.cmake +++ b/Modules/UseQt4.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: UseQt4 diff --git a/Modules/UseSWIG.cmake b/Modules/UseSWIG.cmake index e31df37..cc023ee 100644 --- a/Modules/UseSWIG.cmake +++ b/Modules/UseSWIG.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: UseSWIG diff --git a/Modules/UseSWIG/ManageSupportFiles.cmake b/Modules/UseSWIG/ManageSupportFiles.cmake index 6618fd5..5fdc6eb 100644 --- a/Modules/UseSWIG/ManageSupportFiles.cmake +++ b/Modules/UseSWIG/ManageSupportFiles.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if (ACTION STREQUAL "CLEAN") diff --git a/Modules/Use_wxWindows.cmake b/Modules/Use_wxWindows.cmake index 782874c..5f46784 100644 --- a/Modules/Use_wxWindows.cmake +++ b/Modules/Use_wxWindows.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: Use_wxWindows diff --git a/Modules/UsewxWidgets.cmake b/Modules/UsewxWidgets.cmake index f7716b7..7152afe 100644 --- a/Modules/UsewxWidgets.cmake +++ b/Modules/UsewxWidgets.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: UsewxWidgets diff --git a/Modules/VTKCompatibility.cmake b/Modules/VTKCompatibility.cmake index c0b8b22..316e2e1 100644 --- a/Modules/VTKCompatibility.cmake +++ b/Modules/VTKCompatibility.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Not needed for "modern" VTK. if (EXISTS "${VTK_SOURCE_DIR}/CMake/vtkModule.cmake") diff --git a/Modules/WriteBasicConfigVersionFile.cmake b/Modules/WriteBasicConfigVersionFile.cmake index ac6013b..4a90aea 100644 --- a/Modules/WriteBasicConfigVersionFile.cmake +++ b/Modules/WriteBasicConfigVersionFile.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: WriteBasicConfigVersionFile diff --git a/Modules/WriteCompilerDetectionHeader.cmake b/Modules/WriteCompilerDetectionHeader.cmake index a32bd01..954875e 100644 --- a/Modules/WriteCompilerDetectionHeader.cmake +++ b/Modules/WriteCompilerDetectionHeader.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: WriteCompilerDetectionHeader diff --git a/Modules/ecos_clean.cmake b/Modules/ecos_clean.cmake index 480b1ce..1c091ad 100644 --- a/Modules/ecos_clean.cmake +++ b/Modules/ecos_clean.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. file(GLOB _files ${ECOS_DIR}/*) diff --git a/Modules/kde3uic.cmake b/Modules/kde3uic.cmake index cf0a57f..2dfe0f7 100644 --- a/Modules/kde3uic.cmake +++ b/Modules/kde3uic.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # used internally by KDE3Macros.cmake diff --git a/Packaging/QtSDK/ToolsCMakeXX.cmake b/Packaging/QtSDK/ToolsCMakeXX.cmake index 99731fb..f309f94 100644 --- a/Packaging/QtSDK/ToolsCMakeXX.cmake +++ b/Packaging/QtSDK/ToolsCMakeXX.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # CMake version include("${CMAKE_CURRENT_LIST_DIR}/../../Source/CMakeVersion.cmake") diff --git a/Packaging/QtSDK/qt.tools.cmake.xx.qs.in b/Packaging/QtSDK/qt.tools.cmake.xx.qs.in index e806dd7..b449581 100644 --- a/Packaging/QtSDK/qt.tools.cmake.xx.qs.in +++ b/Packaging/QtSDK/qt.tools.cmake.xx.qs.in @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Distributed under the OSI-approved BSD 3-Clause License. See accompanying -** file Copyright.txt or https://cmake.org/licensing for details. +** file LICENSE.rst or https://cmake.org/licensing for details. ** ****************************************************************************/ diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index c6d562a..4d1fde9 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # To ensure maximum portability across various compilers and platforms # deactivate any compiler extensions. Skip this for QNX, where additional diff --git a/Source/CMakeVersion.rc.in b/Source/CMakeVersion.rc.in index 762d9bb..df37348 100644 --- a/Source/CMakeVersion.rc.in +++ b/Source/CMakeVersion.rc.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ 1 VERSIONINFO FILEVERSION @CMake_RCVERSION@ diff --git a/Source/CPack/IFW/cmCPackIFWCommon.cxx b/Source/CPack/IFW/cmCPackIFWCommon.cxx index 0f1283d..9b8fc83 100644 --- a/Source/CPack/IFW/cmCPackIFWCommon.cxx +++ b/Source/CPack/IFW/cmCPackIFWCommon.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackIFWCommon.h" #include // IWYU pragma: keep diff --git a/Source/CPack/IFW/cmCPackIFWCommon.h b/Source/CPack/IFW/cmCPackIFWCommon.h index 8782f2a..da49c68 100644 --- a/Source/CPack/IFW/cmCPackIFWCommon.h +++ b/Source/CPack/IFW/cmCPackIFWCommon.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/IFW/cmCPackIFWGenerator.cxx b/Source/CPack/IFW/cmCPackIFWGenerator.cxx index b56e001..1560575 100644 --- a/Source/CPack/IFW/cmCPackIFWGenerator.cxx +++ b/Source/CPack/IFW/cmCPackIFWGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackIFWGenerator.h" #include diff --git a/Source/CPack/IFW/cmCPackIFWGenerator.h b/Source/CPack/IFW/cmCPackIFWGenerator.h index dc15932..85d9eb9 100644 --- a/Source/CPack/IFW/cmCPackIFWGenerator.h +++ b/Source/CPack/IFW/cmCPackIFWGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/IFW/cmCPackIFWInstaller.cxx b/Source/CPack/IFW/cmCPackIFWInstaller.cxx index 0d9da19..da373db 100644 --- a/Source/CPack/IFW/cmCPackIFWInstaller.cxx +++ b/Source/CPack/IFW/cmCPackIFWInstaller.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackIFWInstaller.h" #include diff --git a/Source/CPack/IFW/cmCPackIFWInstaller.h b/Source/CPack/IFW/cmCPackIFWInstaller.h index 6a933ad..fe8f37f 100644 --- a/Source/CPack/IFW/cmCPackIFWInstaller.h +++ b/Source/CPack/IFW/cmCPackIFWInstaller.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/IFW/cmCPackIFWPackage.cxx b/Source/CPack/IFW/cmCPackIFWPackage.cxx index b134ac9..5c101e9 100644 --- a/Source/CPack/IFW/cmCPackIFWPackage.cxx +++ b/Source/CPack/IFW/cmCPackIFWPackage.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackIFWPackage.h" #include diff --git a/Source/CPack/IFW/cmCPackIFWPackage.h b/Source/CPack/IFW/cmCPackIFWPackage.h index 759529e..d6d6ba6 100644 --- a/Source/CPack/IFW/cmCPackIFWPackage.h +++ b/Source/CPack/IFW/cmCPackIFWPackage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/IFW/cmCPackIFWRepository.cxx b/Source/CPack/IFW/cmCPackIFWRepository.cxx index 6b98eab..67ef536 100644 --- a/Source/CPack/IFW/cmCPackIFWRepository.cxx +++ b/Source/CPack/IFW/cmCPackIFWRepository.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackIFWRepository.h" #include diff --git a/Source/CPack/IFW/cmCPackIFWRepository.h b/Source/CPack/IFW/cmCPackIFWRepository.h index 0153452..503cf45 100644 --- a/Source/CPack/IFW/cmCPackIFWRepository.h +++ b/Source/CPack/IFW/cmCPackIFWRepository.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/WiX/cmCMakeToWixPath.cxx b/Source/CPack/WiX/cmCMakeToWixPath.cxx index 7d6e880..d7f37c6 100644 --- a/Source/CPack/WiX/cmCMakeToWixPath.cxx +++ b/Source/CPack/WiX/cmCMakeToWixPath.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakeToWixPath.h" #include diff --git a/Source/CPack/WiX/cmCMakeToWixPath.h b/Source/CPack/WiX/cmCMakeToWixPath.h index 0700bfa..ec685cd 100644 --- a/Source/CPack/WiX/cmCMakeToWixPath.h +++ b/Source/CPack/WiX/cmCMakeToWixPath.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" //IWYU pragma: keep diff --git a/Source/CPack/WiX/cmCPackWIXGenerator.cxx b/Source/CPack/WiX/cmCPackWIXGenerator.cxx index dacf0ed..793e893 100644 --- a/Source/CPack/WiX/cmCPackWIXGenerator.cxx +++ b/Source/CPack/WiX/cmCPackWIXGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackWIXGenerator.h" #include diff --git a/Source/CPack/WiX/cmCPackWIXGenerator.h b/Source/CPack/WiX/cmCPackWIXGenerator.h index 66b93cd..49f20a7 100644 --- a/Source/CPack/WiX/cmCPackWIXGenerator.h +++ b/Source/CPack/WiX/cmCPackWIXGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/WiX/cmWIXAccessControlList.cxx b/Source/CPack/WiX/cmWIXAccessControlList.cxx index 2a3cae0..0755305 100644 --- a/Source/CPack/WiX/cmWIXAccessControlList.cxx +++ b/Source/CPack/WiX/cmWIXAccessControlList.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXAccessControlList.h" #include diff --git a/Source/CPack/WiX/cmWIXAccessControlList.h b/Source/CPack/WiX/cmWIXAccessControlList.h index ee5efa5..1543bc6 100644 --- a/Source/CPack/WiX/cmWIXAccessControlList.h +++ b/Source/CPack/WiX/cmWIXAccessControlList.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmCPackLog.h" diff --git a/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.cxx b/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.cxx index b1e7bd2..b6e3cd2 100644 --- a/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.cxx +++ b/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXDirectoriesSourceWriter.h" #include diff --git a/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.h b/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.h index b0aa1e2..5aa194d 100644 --- a/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.h +++ b/Source/CPack/WiX/cmWIXDirectoriesSourceWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/WiX/cmWIXFeaturesSourceWriter.cxx b/Source/CPack/WiX/cmWIXFeaturesSourceWriter.cxx index 0d2e6e8..f1ea439 100644 --- a/Source/CPack/WiX/cmWIXFeaturesSourceWriter.cxx +++ b/Source/CPack/WiX/cmWIXFeaturesSourceWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXFeaturesSourceWriter.h" #include "cmStringAlgorithms.h" diff --git a/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h b/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h index 0a51c6d..67f0828 100644 --- a/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h +++ b/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmCPackGenerator.h" diff --git a/Source/CPack/WiX/cmWIXFilesSourceWriter.cxx b/Source/CPack/WiX/cmWIXFilesSourceWriter.cxx index 87ac6ac..d5a9f0f 100644 --- a/Source/CPack/WiX/cmWIXFilesSourceWriter.cxx +++ b/Source/CPack/WiX/cmWIXFilesSourceWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #if defined(__CYGWIN__) // For S_IWRITE symbol # define _DEFAULT_SOURCE diff --git a/Source/CPack/WiX/cmWIXFilesSourceWriter.h b/Source/CPack/WiX/cmWIXFilesSourceWriter.h index f560304..997c674 100644 --- a/Source/CPack/WiX/cmWIXFilesSourceWriter.h +++ b/Source/CPack/WiX/cmWIXFilesSourceWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmCPackGenerator.h" diff --git a/Source/CPack/WiX/cmWIXPatch.cxx b/Source/CPack/WiX/cmWIXPatch.cxx index 2682a6f..09c0837 100644 --- a/Source/CPack/WiX/cmWIXPatch.cxx +++ b/Source/CPack/WiX/cmWIXPatch.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXPatch.h" #include "cmCPackGenerator.h" diff --git a/Source/CPack/WiX/cmWIXPatch.h b/Source/CPack/WiX/cmWIXPatch.h index bb4f6c3..5b71d84 100644 --- a/Source/CPack/WiX/cmWIXPatch.h +++ b/Source/CPack/WiX/cmWIXPatch.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/WiX/cmWIXPatchParser.cxx b/Source/CPack/WiX/cmWIXPatchParser.cxx index 7501e7e..298db22 100644 --- a/Source/CPack/WiX/cmWIXPatchParser.cxx +++ b/Source/CPack/WiX/cmWIXPatchParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXPatchParser.h" #include diff --git a/Source/CPack/WiX/cmWIXPatchParser.h b/Source/CPack/WiX/cmWIXPatchParser.h index 7110e72..23ba047 100644 --- a/Source/CPack/WiX/cmWIXPatchParser.h +++ b/Source/CPack/WiX/cmWIXPatchParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx b/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx index 13fbdc0..fc15686 100644 --- a/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx +++ b/Source/CPack/WiX/cmWIXRichTextFormatWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXRichTextFormatWriter.h" #include "cmVersion.h" diff --git a/Source/CPack/WiX/cmWIXRichTextFormatWriter.h b/Source/CPack/WiX/cmWIXRichTextFormatWriter.h index 99471f1..4c8b9f6 100644 --- a/Source/CPack/WiX/cmWIXRichTextFormatWriter.h +++ b/Source/CPack/WiX/cmWIXRichTextFormatWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/WiX/cmWIXShortcut.cxx b/Source/CPack/WiX/cmWIXShortcut.cxx index 1cfb6c1..bcc5af5 100644 --- a/Source/CPack/WiX/cmWIXShortcut.cxx +++ b/Source/CPack/WiX/cmWIXShortcut.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXShortcut.h" #include "cmWIXFilesSourceWriter.h" diff --git a/Source/CPack/WiX/cmWIXShortcut.h b/Source/CPack/WiX/cmWIXShortcut.h index 315b5ea..05a1ae3 100644 --- a/Source/CPack/WiX/cmWIXShortcut.h +++ b/Source/CPack/WiX/cmWIXShortcut.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/WiX/cmWIXSourceWriter.cxx b/Source/CPack/WiX/cmWIXSourceWriter.cxx index 33e8a70..ed3cbe0 100644 --- a/Source/CPack/WiX/cmWIXSourceWriter.cxx +++ b/Source/CPack/WiX/cmWIXSourceWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWIXSourceWriter.h" #include diff --git a/Source/CPack/WiX/cmWIXSourceWriter.h b/Source/CPack/WiX/cmWIXSourceWriter.h index 1089cf5..5e1150d 100644 --- a/Source/CPack/WiX/cmWIXSourceWriter.h +++ b/Source/CPack/WiX/cmWIXSourceWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/cmCPackArchiveGenerator.cxx b/Source/CPack/cmCPackArchiveGenerator.cxx index 6052e13..bf97240 100644 --- a/Source/CPack/cmCPackArchiveGenerator.cxx +++ b/Source/CPack/cmCPackArchiveGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackArchiveGenerator.h" #include diff --git a/Source/CPack/cmCPackArchiveGenerator.h b/Source/CPack/cmCPackArchiveGenerator.h index 2e62d17..fb56842 100644 --- a/Source/CPack/cmCPackArchiveGenerator.h +++ b/Source/CPack/cmCPackArchiveGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackBundleGenerator.cxx b/Source/CPack/cmCPackBundleGenerator.cxx index f6c852b..3a6f7f4 100644 --- a/Source/CPack/cmCPackBundleGenerator.cxx +++ b/Source/CPack/cmCPackBundleGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackBundleGenerator.h" #include diff --git a/Source/CPack/cmCPackBundleGenerator.h b/Source/CPack/cmCPackBundleGenerator.h index 96d10b0..8daf8ef 100644 --- a/Source/CPack/cmCPackBundleGenerator.h +++ b/Source/CPack/cmCPackBundleGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackComponentGroup.cxx b/Source/CPack/cmCPackComponentGroup.cxx index 078b09f..dfea6c3 100644 --- a/Source/CPack/cmCPackComponentGroup.cxx +++ b/Source/CPack/cmCPackComponentGroup.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackComponentGroup.h" #include diff --git a/Source/CPack/cmCPackComponentGroup.h b/Source/CPack/cmCPackComponentGroup.h index 98915d7..4c70df7 100644 --- a/Source/CPack/cmCPackComponentGroup.h +++ b/Source/CPack/cmCPackComponentGroup.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackConfigure.h.in b/Source/CPack/cmCPackConfigure.h.in index 2c1302d..523ff80 100644 --- a/Source/CPack/cmCPackConfigure.h.in +++ b/Source/CPack/cmCPackConfigure.h.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #cmakedefine01 ENABLE_BUILD_WIX_GENERATOR diff --git a/Source/CPack/cmCPackCygwinBinaryGenerator.cxx b/Source/CPack/cmCPackCygwinBinaryGenerator.cxx index e6d9a10..f5b98c4 100644 --- a/Source/CPack/cmCPackCygwinBinaryGenerator.cxx +++ b/Source/CPack/cmCPackCygwinBinaryGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackCygwinBinaryGenerator.h" #include "cmsys/SystemTools.hxx" diff --git a/Source/CPack/cmCPackCygwinBinaryGenerator.h b/Source/CPack/cmCPackCygwinBinaryGenerator.h index ccab607..2ddfd18 100644 --- a/Source/CPack/cmCPackCygwinBinaryGenerator.h +++ b/Source/CPack/cmCPackCygwinBinaryGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmCPackArchiveGenerator.h" diff --git a/Source/CPack/cmCPackCygwinSourceGenerator.cxx b/Source/CPack/cmCPackCygwinSourceGenerator.cxx index 107ce38..144d699 100644 --- a/Source/CPack/cmCPackCygwinSourceGenerator.cxx +++ b/Source/CPack/cmCPackCygwinSourceGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackCygwinSourceGenerator.h" #include "cmsys/SystemTools.hxx" diff --git a/Source/CPack/cmCPackCygwinSourceGenerator.h b/Source/CPack/cmCPackCygwinSourceGenerator.h index 2746a77..8d81a7c 100644 --- a/Source/CPack/cmCPackCygwinSourceGenerator.h +++ b/Source/CPack/cmCPackCygwinSourceGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmCPackArchiveGenerator.h" diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx index 13093d1..fd85b7c 100644 --- a/Source/CPack/cmCPackDebGenerator.cxx +++ b/Source/CPack/cmCPackDebGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackDebGenerator.h" #include diff --git a/Source/CPack/cmCPackDebGenerator.h b/Source/CPack/cmCPackDebGenerator.h index 4203eaa..b450cbf 100644 --- a/Source/CPack/cmCPackDebGenerator.h +++ b/Source/CPack/cmCPackDebGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackDragNDropGenerator.cxx b/Source/CPack/cmCPackDragNDropGenerator.cxx index cc8ebbe..8d2f516 100644 --- a/Source/CPack/cmCPackDragNDropGenerator.cxx +++ b/Source/CPack/cmCPackDragNDropGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackDragNDropGenerator.h" #include diff --git a/Source/CPack/cmCPackDragNDropGenerator.h b/Source/CPack/cmCPackDragNDropGenerator.h index b078f4b..accccc0 100644 --- a/Source/CPack/cmCPackDragNDropGenerator.h +++ b/Source/CPack/cmCPackDragNDropGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackExternalGenerator.cxx b/Source/CPack/cmCPackExternalGenerator.cxx index 9b4cc55..351dba0 100644 --- a/Source/CPack/cmCPackExternalGenerator.cxx +++ b/Source/CPack/cmCPackExternalGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackExternalGenerator.h" #include diff --git a/Source/CPack/cmCPackExternalGenerator.h b/Source/CPack/cmCPackExternalGenerator.h index 66ae7b9..2055831 100644 --- a/Source/CPack/cmCPackExternalGenerator.h +++ b/Source/CPack/cmCPackExternalGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CPack/cmCPackFreeBSDGenerator.cxx b/Source/CPack/cmCPackFreeBSDGenerator.cxx index 9dd3f0c..e4a308c 100644 --- a/Source/CPack/cmCPackFreeBSDGenerator.cxx +++ b/Source/CPack/cmCPackFreeBSDGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackFreeBSDGenerator.h" #include diff --git a/Source/CPack/cmCPackFreeBSDGenerator.h b/Source/CPack/cmCPackFreeBSDGenerator.h index 22440fa..fae7604 100644 --- a/Source/CPack/cmCPackFreeBSDGenerator.h +++ b/Source/CPack/cmCPackFreeBSDGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx index 477a66d..f725580 100644 --- a/Source/CPack/cmCPackGenerator.cxx +++ b/Source/CPack/cmCPackGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackGenerator.h" #include diff --git a/Source/CPack/cmCPackGenerator.h b/Source/CPack/cmCPackGenerator.h index 6294552..fb12989 100644 --- a/Source/CPack/cmCPackGenerator.h +++ b/Source/CPack/cmCPackGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackGeneratorFactory.cxx b/Source/CPack/cmCPackGeneratorFactory.cxx index 3617a4d..daf9fa6 100644 --- a/Source/CPack/cmCPackGeneratorFactory.cxx +++ b/Source/CPack/cmCPackGeneratorFactory.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackGeneratorFactory.h" #include diff --git a/Source/CPack/cmCPackGeneratorFactory.h b/Source/CPack/cmCPackGeneratorFactory.h index 0efd7a5..f8f964d 100644 --- a/Source/CPack/cmCPackGeneratorFactory.h +++ b/Source/CPack/cmCPackGeneratorFactory.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackInnoSetupGenerator.cxx b/Source/CPack/cmCPackInnoSetupGenerator.cxx index 19020fb..f76deb2 100644 --- a/Source/CPack/cmCPackInnoSetupGenerator.cxx +++ b/Source/CPack/cmCPackInnoSetupGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackInnoSetupGenerator.h" diff --git a/Source/CPack/cmCPackInnoSetupGenerator.h b/Source/CPack/cmCPackInnoSetupGenerator.h index fc79776..5d25b9e 100644 --- a/Source/CPack/cmCPackInnoSetupGenerator.h +++ b/Source/CPack/cmCPackInnoSetupGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/CPack/cmCPackLog.cxx b/Source/CPack/cmCPackLog.cxx index 812a694..cec9b8d 100644 --- a/Source/CPack/cmCPackLog.cxx +++ b/Source/CPack/cmCPackLog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackLog.h" #include diff --git a/Source/CPack/cmCPackLog.h b/Source/CPack/cmCPackLog.h index d0f073d..009a391 100644 --- a/Source/CPack/cmCPackLog.h +++ b/Source/CPack/cmCPackLog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 9c0398c..bc18e82 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackNSISGenerator.h" #include diff --git a/Source/CPack/cmCPackNSISGenerator.h b/Source/CPack/cmCPackNSISGenerator.h index b6bb2c7..5aca90d 100644 --- a/Source/CPack/cmCPackNSISGenerator.h +++ b/Source/CPack/cmCPackNSISGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackNuGetGenerator.cxx b/Source/CPack/cmCPackNuGetGenerator.cxx index ec83268..079b4c6 100644 --- a/Source/CPack/cmCPackNuGetGenerator.cxx +++ b/Source/CPack/cmCPackNuGetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackNuGetGenerator.h" #include diff --git a/Source/CPack/cmCPackNuGetGenerator.h b/Source/CPack/cmCPackNuGetGenerator.h index f8deb8e..b3f6a45 100644 --- a/Source/CPack/cmCPackNuGetGenerator.h +++ b/Source/CPack/cmCPackNuGetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmCPackGenerator.h" diff --git a/Source/CPack/cmCPackPKGGenerator.cxx b/Source/CPack/cmCPackPKGGenerator.cxx index cf21ae9..796bfa7 100644 --- a/Source/CPack/cmCPackPKGGenerator.cxx +++ b/Source/CPack/cmCPackPKGGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackPKGGenerator.h" #include diff --git a/Source/CPack/cmCPackPKGGenerator.h b/Source/CPack/cmCPackPKGGenerator.h index 603f6cc..8881e95 100644 --- a/Source/CPack/cmCPackPKGGenerator.h +++ b/Source/CPack/cmCPackPKGGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackProductBuildGenerator.cxx b/Source/CPack/cmCPackProductBuildGenerator.cxx index 5d57e2f..32f9a7c 100644 --- a/Source/CPack/cmCPackProductBuildGenerator.cxx +++ b/Source/CPack/cmCPackProductBuildGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackProductBuildGenerator.h" #include diff --git a/Source/CPack/cmCPackProductBuildGenerator.h b/Source/CPack/cmCPackProductBuildGenerator.h index 6462cf5..66e1330 100644 --- a/Source/CPack/cmCPackProductBuildGenerator.h +++ b/Source/CPack/cmCPackProductBuildGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackRPMGenerator.cxx b/Source/CPack/cmCPackRPMGenerator.cxx index d998770..2356d93 100644 --- a/Source/CPack/cmCPackRPMGenerator.cxx +++ b/Source/CPack/cmCPackRPMGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackRPMGenerator.h" #include diff --git a/Source/CPack/cmCPackRPMGenerator.h b/Source/CPack/cmCPackRPMGenerator.h index dde36cf..86df55e 100644 --- a/Source/CPack/cmCPackRPMGenerator.h +++ b/Source/CPack/cmCPackRPMGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cmCPackSTGZGenerator.cxx b/Source/CPack/cmCPackSTGZGenerator.cxx index 6c83b59..38cadf4 100644 --- a/Source/CPack/cmCPackSTGZGenerator.cxx +++ b/Source/CPack/cmCPackSTGZGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCPackSTGZGenerator.h" #include diff --git a/Source/CPack/cmCPackSTGZGenerator.h b/Source/CPack/cmCPackSTGZGenerator.h index d2df1f2..e34c832 100644 --- a/Source/CPack/cmCPackSTGZGenerator.h +++ b/Source/CPack/cmCPackSTGZGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx index f688b52..138d8fa 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Source/CTest/cmCTestBZR.cxx b/Source/CTest/cmCTestBZR.cxx index d5a14cf..474d24e 100644 --- a/Source/CTest/cmCTestBZR.cxx +++ b/Source/CTest/cmCTestBZR.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestBZR.h" #include diff --git a/Source/CTest/cmCTestBZR.h b/Source/CTest/cmCTestBZR.h index 96c2038..808dafa 100644 --- a/Source/CTest/cmCTestBZR.h +++ b/Source/CTest/cmCTestBZR.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestBinPacker.cxx b/Source/CTest/cmCTestBinPacker.cxx index 1166e54..1bea81e 100644 --- a/Source/CTest/cmCTestBinPacker.cxx +++ b/Source/CTest/cmCTestBinPacker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestBinPacker.h" #include diff --git a/Source/CTest/cmCTestBinPacker.h b/Source/CTest/cmCTestBinPacker.h index a632b59..6390a1c 100644 --- a/Source/CTest/cmCTestBinPacker.h +++ b/Source/CTest/cmCTestBinPacker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CTest/cmCTestBuildAndTest.cxx b/Source/CTest/cmCTestBuildAndTest.cxx index 8c083d0..68ca77a 100644 --- a/Source/CTest/cmCTestBuildAndTest.cxx +++ b/Source/CTest/cmCTestBuildAndTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestBuildAndTest.h" #include diff --git a/Source/CTest/cmCTestBuildAndTest.h b/Source/CTest/cmCTestBuildAndTest.h index f680bc2..f1dc3d2 100644 --- a/Source/CTest/cmCTestBuildAndTest.h +++ b/Source/CTest/cmCTestBuildAndTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestBuildCommand.cxx b/Source/CTest/cmCTestBuildCommand.cxx index 21a9ed8..d74ab55 100644 --- a/Source/CTest/cmCTestBuildCommand.cxx +++ b/Source/CTest/cmCTestBuildCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestBuildCommand.h" #include diff --git a/Source/CTest/cmCTestBuildCommand.h b/Source/CTest/cmCTestBuildCommand.h index a23966d..805da0f 100644 --- a/Source/CTest/cmCTestBuildCommand.h +++ b/Source/CTest/cmCTestBuildCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx index 9cc1110..520fa68 100644 --- a/Source/CTest/cmCTestBuildHandler.cxx +++ b/Source/CTest/cmCTestBuildHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestBuildHandler.h" #include diff --git a/Source/CTest/cmCTestBuildHandler.h b/Source/CTest/cmCTestBuildHandler.h index a455346..8baec69 100644 --- a/Source/CTest/cmCTestBuildHandler.h +++ b/Source/CTest/cmCTestBuildHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestCVS.cxx b/Source/CTest/cmCTestCVS.cxx index a1be25d..dadf802 100644 --- a/Source/CTest/cmCTestCVS.cxx +++ b/Source/CTest/cmCTestCVS.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestCVS.h" #include diff --git a/Source/CTest/cmCTestCVS.h b/Source/CTest/cmCTestCVS.h index c4a5b8c..d1dc08b 100644 --- a/Source/CTest/cmCTestCVS.h +++ b/Source/CTest/cmCTestCVS.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestCommand.cxx b/Source/CTest/cmCTestCommand.cxx index 6ecd18b..e894de7 100644 --- a/Source/CTest/cmCTestCommand.cxx +++ b/Source/CTest/cmCTestCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/CTest/cmCTestCommand.h b/Source/CTest/cmCTestCommand.h index 777910a..a206c58 100644 --- a/Source/CTest/cmCTestCommand.h +++ b/Source/CTest/cmCTestCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestConfigureCommand.cxx b/Source/CTest/cmCTestConfigureCommand.cxx index 4657bbd..bcb020e 100644 --- a/Source/CTest/cmCTestConfigureCommand.cxx +++ b/Source/CTest/cmCTestConfigureCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestConfigureCommand.h" #include diff --git a/Source/CTest/cmCTestConfigureCommand.h b/Source/CTest/cmCTestConfigureCommand.h index 117d184..5e3001e 100644 --- a/Source/CTest/cmCTestConfigureCommand.h +++ b/Source/CTest/cmCTestConfigureCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestCoverageCommand.cxx b/Source/CTest/cmCTestCoverageCommand.cxx index 6bed1a3..66afaa3 100644 --- a/Source/CTest/cmCTestCoverageCommand.cxx +++ b/Source/CTest/cmCTestCoverageCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestCoverageCommand.h" #include diff --git a/Source/CTest/cmCTestCoverageCommand.h b/Source/CTest/cmCTestCoverageCommand.h index dfbb9be..5df1c0e 100644 --- a/Source/CTest/cmCTestCoverageCommand.h +++ b/Source/CTest/cmCTestCoverageCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestCoverageHandler.cxx b/Source/CTest/cmCTestCoverageHandler.cxx index 4560f16..1a0451d 100644 --- a/Source/CTest/cmCTestCoverageHandler.cxx +++ b/Source/CTest/cmCTestCoverageHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestCoverageHandler.h" #include diff --git a/Source/CTest/cmCTestCoverageHandler.h b/Source/CTest/cmCTestCoverageHandler.h index b0b0ec6..e8232f8 100644 --- a/Source/CTest/cmCTestCoverageHandler.h +++ b/Source/CTest/cmCTestCoverageHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestCurl.cxx b/Source/CTest/cmCTestCurl.cxx index 46d6811..6c2349a 100644 --- a/Source/CTest/cmCTestCurl.cxx +++ b/Source/CTest/cmCTestCurl.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestCurl.h" #include diff --git a/Source/CTest/cmCTestCurl.h b/Source/CTest/cmCTestCurl.h index 2faaf89..0d5fb7c 100644 --- a/Source/CTest/cmCTestCurl.h +++ b/Source/CTest/cmCTestCurl.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx b/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx index 7161671..0fc89e8 100644 --- a/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx +++ b/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestEmptyBinaryDirectoryCommand.h" #include "cmsys/Directory.hxx" diff --git a/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h b/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h index d19ae98..11b12a8 100644 --- a/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h +++ b/Source/CTest/cmCTestEmptyBinaryDirectoryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestGIT.cxx b/Source/CTest/cmCTestGIT.cxx index eb0d139..52adedd 100644 --- a/Source/CTest/cmCTestGIT.cxx +++ b/Source/CTest/cmCTestGIT.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestGIT.h" #include diff --git a/Source/CTest/cmCTestGIT.h b/Source/CTest/cmCTestGIT.h index c739df8..8566b81 100644 --- a/Source/CTest/cmCTestGIT.h +++ b/Source/CTest/cmCTestGIT.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestGenericHandler.cxx b/Source/CTest/cmCTestGenericHandler.cxx index eea2da3..63f298e 100644 --- a/Source/CTest/cmCTestGenericHandler.cxx +++ b/Source/CTest/cmCTestGenericHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestGenericHandler.h" #include "cmCTest.h" diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index 4fc9adb..275b526 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestGlobalVC.cxx b/Source/CTest/cmCTestGlobalVC.cxx index ae03d7f..0d36b71 100644 --- a/Source/CTest/cmCTestGlobalVC.cxx +++ b/Source/CTest/cmCTestGlobalVC.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestGlobalVC.h" #include diff --git a/Source/CTest/cmCTestGlobalVC.h b/Source/CTest/cmCTestGlobalVC.h index 81d36f5..e724b07 100644 --- a/Source/CTest/cmCTestGlobalVC.h +++ b/Source/CTest/cmCTestGlobalVC.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestHG.cxx b/Source/CTest/cmCTestHG.cxx index 50b25cc..738cac2 100644 --- a/Source/CTest/cmCTestHG.cxx +++ b/Source/CTest/cmCTestHG.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestHG.h" #include diff --git a/Source/CTest/cmCTestHG.h b/Source/CTest/cmCTestHG.h index 47f098c..bd69dd3 100644 --- a/Source/CTest/cmCTestHG.h +++ b/Source/CTest/cmCTestHG.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestHandlerCommand.cxx b/Source/CTest/cmCTestHandlerCommand.cxx index fc769e4..b8e6a03 100644 --- a/Source/CTest/cmCTestHandlerCommand.cxx +++ b/Source/CTest/cmCTestHandlerCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestHandlerCommand.h" #include diff --git a/Source/CTest/cmCTestHandlerCommand.h b/Source/CTest/cmCTestHandlerCommand.h index c0a2fbc..ef7bc5d 100644 --- a/Source/CTest/cmCTestHandlerCommand.h +++ b/Source/CTest/cmCTestHandlerCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestLaunch.cxx b/Source/CTest/cmCTestLaunch.cxx index 200bd7d..a929b39 100644 --- a/Source/CTest/cmCTestLaunch.cxx +++ b/Source/CTest/cmCTestLaunch.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestLaunch.h" #include diff --git a/Source/CTest/cmCTestLaunch.h b/Source/CTest/cmCTestLaunch.h index b130266..0aeb211 100644 --- a/Source/CTest/cmCTestLaunch.h +++ b/Source/CTest/cmCTestLaunch.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestLaunchReporter.cxx b/Source/CTest/cmCTestLaunchReporter.cxx index 77046a3..2e1d2bb 100644 --- a/Source/CTest/cmCTestLaunchReporter.cxx +++ b/Source/CTest/cmCTestLaunchReporter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestLaunchReporter.h" #include diff --git a/Source/CTest/cmCTestLaunchReporter.h b/Source/CTest/cmCTestLaunchReporter.h index 0b9a08a..cc32ced 100644 --- a/Source/CTest/cmCTestLaunchReporter.h +++ b/Source/CTest/cmCTestLaunchReporter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestMemCheckCommand.cxx b/Source/CTest/cmCTestMemCheckCommand.cxx index 28d7158..8b681e2 100644 --- a/Source/CTest/cmCTestMemCheckCommand.cxx +++ b/Source/CTest/cmCTestMemCheckCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestMemCheckCommand.h" #include diff --git a/Source/CTest/cmCTestMemCheckCommand.h b/Source/CTest/cmCTestMemCheckCommand.h index 0f3a7fc..b0ea52f 100644 --- a/Source/CTest/cmCTestMemCheckCommand.h +++ b/Source/CTest/cmCTestMemCheckCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestMemCheckHandler.cxx b/Source/CTest/cmCTestMemCheckHandler.cxx index c5a3cf6..c95cc3f 100644 --- a/Source/CTest/cmCTestMemCheckHandler.cxx +++ b/Source/CTest/cmCTestMemCheckHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestMemCheckHandler.h" #include diff --git a/Source/CTest/cmCTestMemCheckHandler.h b/Source/CTest/cmCTestMemCheckHandler.h index 4f396d2..5f381c2 100644 --- a/Source/CTest/cmCTestMemCheckHandler.h +++ b/Source/CTest/cmCTestMemCheckHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestMultiProcessHandler.cxx b/Source/CTest/cmCTestMultiProcessHandler.cxx index bf8f3bc..0df9657 100644 --- a/Source/CTest/cmCTestMultiProcessHandler.cxx +++ b/Source/CTest/cmCTestMultiProcessHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestMultiProcessHandler.h" #include diff --git a/Source/CTest/cmCTestMultiProcessHandler.h b/Source/CTest/cmCTestMultiProcessHandler.h index cb36a74..b85284b 100644 --- a/Source/CTest/cmCTestMultiProcessHandler.h +++ b/Source/CTest/cmCTestMultiProcessHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestP4.cxx b/Source/CTest/cmCTestP4.cxx index e9c8f61..97d280a 100644 --- a/Source/CTest/cmCTestP4.cxx +++ b/Source/CTest/cmCTestP4.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestP4.h" #include diff --git a/Source/CTest/cmCTestP4.h b/Source/CTest/cmCTestP4.h index 50de918..76965ac 100644 --- a/Source/CTest/cmCTestP4.h +++ b/Source/CTest/cmCTestP4.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestReadCustomFilesCommand.cxx b/Source/CTest/cmCTestReadCustomFilesCommand.cxx index 992676f..343a74e 100644 --- a/Source/CTest/cmCTestReadCustomFilesCommand.cxx +++ b/Source/CTest/cmCTestReadCustomFilesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestReadCustomFilesCommand.h" #include "cmCTest.h" diff --git a/Source/CTest/cmCTestReadCustomFilesCommand.h b/Source/CTest/cmCTestReadCustomFilesCommand.h index d922d30..8b1b357 100644 --- a/Source/CTest/cmCTestReadCustomFilesCommand.h +++ b/Source/CTest/cmCTestReadCustomFilesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestResourceAllocator.cxx b/Source/CTest/cmCTestResourceAllocator.cxx index 93cdfde..a7ae7bc 100644 --- a/Source/CTest/cmCTestResourceAllocator.cxx +++ b/Source/CTest/cmCTestResourceAllocator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestResourceAllocator.h" diff --git a/Source/CTest/cmCTestResourceAllocator.h b/Source/CTest/cmCTestResourceAllocator.h index 667dd74..fcb5ef6 100644 --- a/Source/CTest/cmCTestResourceAllocator.h +++ b/Source/CTest/cmCTestResourceAllocator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CTest/cmCTestResourceGroupsLexerHelper.cxx b/Source/CTest/cmCTestResourceGroupsLexerHelper.cxx index 479ad31..776c063 100644 --- a/Source/CTest/cmCTestResourceGroupsLexerHelper.cxx +++ b/Source/CTest/cmCTestResourceGroupsLexerHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestResourceGroupsLexerHelper.h" #include "cmCTestResourceGroupsLexer.h" diff --git a/Source/CTest/cmCTestResourceGroupsLexerHelper.h b/Source/CTest/cmCTestResourceGroupsLexerHelper.h index 1f73e2f..c957a51 100644 --- a/Source/CTest/cmCTestResourceGroupsLexerHelper.h +++ b/Source/CTest/cmCTestResourceGroupsLexerHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/CTest/cmCTestResourceSpec.cxx b/Source/CTest/cmCTestResourceSpec.cxx index d699f1e..b6e4b40 100644 --- a/Source/CTest/cmCTestResourceSpec.cxx +++ b/Source/CTest/cmCTestResourceSpec.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestResourceSpec.h" #include diff --git a/Source/CTest/cmCTestResourceSpec.h b/Source/CTest/cmCTestResourceSpec.h index 5155a3b..fb68021 100644 --- a/Source/CTest/cmCTestResourceSpec.h +++ b/Source/CTest/cmCTestResourceSpec.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestRunScriptCommand.cxx b/Source/CTest/cmCTestRunScriptCommand.cxx index 74620a2..e415310 100644 --- a/Source/CTest/cmCTestRunScriptCommand.cxx +++ b/Source/CTest/cmCTestRunScriptCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestRunScriptCommand.h" #include "cmCTestScriptHandler.h" diff --git a/Source/CTest/cmCTestRunScriptCommand.h b/Source/CTest/cmCTestRunScriptCommand.h index b17f5c0..5b189e5 100644 --- a/Source/CTest/cmCTestRunScriptCommand.h +++ b/Source/CTest/cmCTestRunScriptCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestRunTest.cxx b/Source/CTest/cmCTestRunTest.cxx index 4076347..21eaa19 100644 --- a/Source/CTest/cmCTestRunTest.cxx +++ b/Source/CTest/cmCTestRunTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestRunTest.h" #include diff --git a/Source/CTest/cmCTestRunTest.h b/Source/CTest/cmCTestRunTest.h index 05a5f76..3905dab 100644 --- a/Source/CTest/cmCTestRunTest.h +++ b/Source/CTest/cmCTestRunTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestSVN.cxx b/Source/CTest/cmCTestSVN.cxx index 402fa1a..3589c6b 100644 --- a/Source/CTest/cmCTestSVN.cxx +++ b/Source/CTest/cmCTestSVN.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestSVN.h" #include diff --git a/Source/CTest/cmCTestSVN.h b/Source/CTest/cmCTestSVN.h index a0f1384..9b4ea6a 100644 --- a/Source/CTest/cmCTestSVN.h +++ b/Source/CTest/cmCTestSVN.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestScriptHandler.cxx b/Source/CTest/cmCTestScriptHandler.cxx index cde5a04..48f0935 100644 --- a/Source/CTest/cmCTestScriptHandler.cxx +++ b/Source/CTest/cmCTestScriptHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestScriptHandler.h" #include diff --git a/Source/CTest/cmCTestScriptHandler.h b/Source/CTest/cmCTestScriptHandler.h index 96a88dd..4004e68 100644 --- a/Source/CTest/cmCTestScriptHandler.h +++ b/Source/CTest/cmCTestScriptHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestSleepCommand.cxx b/Source/CTest/cmCTestSleepCommand.cxx index f57d856..3ee9aeb 100644 --- a/Source/CTest/cmCTestSleepCommand.cxx +++ b/Source/CTest/cmCTestSleepCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestSleepCommand.h" #include diff --git a/Source/CTest/cmCTestSleepCommand.h b/Source/CTest/cmCTestSleepCommand.h index 3d4eb1e..0eed451 100644 --- a/Source/CTest/cmCTestSleepCommand.h +++ b/Source/CTest/cmCTestSleepCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestStartCommand.cxx b/Source/CTest/cmCTestStartCommand.cxx index 42a4c93..0a4ef09 100644 --- a/Source/CTest/cmCTestStartCommand.cxx +++ b/Source/CTest/cmCTestStartCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestStartCommand.h" #include diff --git a/Source/CTest/cmCTestStartCommand.h b/Source/CTest/cmCTestStartCommand.h index 325471a..0b5a337 100644 --- a/Source/CTest/cmCTestStartCommand.h +++ b/Source/CTest/cmCTestStartCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestSubmitCommand.cxx b/Source/CTest/cmCTestSubmitCommand.cxx index 8ae0f4c..4b34cf6 100644 --- a/Source/CTest/cmCTestSubmitCommand.cxx +++ b/Source/CTest/cmCTestSubmitCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestSubmitCommand.h" #include diff --git a/Source/CTest/cmCTestSubmitCommand.h b/Source/CTest/cmCTestSubmitCommand.h index 9c02fc8..f688976 100644 --- a/Source/CTest/cmCTestSubmitCommand.h +++ b/Source/CTest/cmCTestSubmitCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestSubmitHandler.cxx b/Source/CTest/cmCTestSubmitHandler.cxx index df908e6..79fcffc 100644 --- a/Source/CTest/cmCTestSubmitHandler.cxx +++ b/Source/CTest/cmCTestSubmitHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestSubmitHandler.h" #include diff --git a/Source/CTest/cmCTestSubmitHandler.h b/Source/CTest/cmCTestSubmitHandler.h index d3e2739..221c958 100644 --- a/Source/CTest/cmCTestSubmitHandler.h +++ b/Source/CTest/cmCTestSubmitHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestTestCommand.cxx b/Source/CTest/cmCTestTestCommand.cxx index ef3c80f..2d923a4 100644 --- a/Source/CTest/cmCTestTestCommand.cxx +++ b/Source/CTest/cmCTestTestCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestTestCommand.h" #include diff --git a/Source/CTest/cmCTestTestCommand.h b/Source/CTest/cmCTestTestCommand.h index 038d219..5c90c64 100644 --- a/Source/CTest/cmCTestTestCommand.h +++ b/Source/CTest/cmCTestTestCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx index 1f45b9d..69ab748 100644 --- a/Source/CTest/cmCTestTestHandler.cxx +++ b/Source/CTest/cmCTestTestHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestTestHandler.h" #include diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index b97d6b7..6ad2e60 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestTestMeasurementXMLParser.cxx b/Source/CTest/cmCTestTestMeasurementXMLParser.cxx index b244e85..6183aef 100644 --- a/Source/CTest/cmCTestTestMeasurementXMLParser.cxx +++ b/Source/CTest/cmCTestTestMeasurementXMLParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestTestMeasurementXMLParser.h" diff --git a/Source/CTest/cmCTestTestMeasurementXMLParser.h b/Source/CTest/cmCTestTestMeasurementXMLParser.h index 240f225..593107e 100644 --- a/Source/CTest/cmCTestTestMeasurementXMLParser.h +++ b/Source/CTest/cmCTestTestMeasurementXMLParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include diff --git a/Source/CTest/cmCTestTypes.cxx b/Source/CTest/cmCTestTypes.cxx index 9a06cd9..917a2f4 100644 --- a/Source/CTest/cmCTestTypes.cxx +++ b/Source/CTest/cmCTestTypes.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestTypes.h" diff --git a/Source/CTest/cmCTestTypes.h b/Source/CTest/cmCTestTypes.h index 0dfc4a5..7360f3c 100644 --- a/Source/CTest/cmCTestTypes.h +++ b/Source/CTest/cmCTestTypes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/CTest/cmCTestUpdateCommand.cxx b/Source/CTest/cmCTestUpdateCommand.cxx index b179e52..71d92c4 100644 --- a/Source/CTest/cmCTestUpdateCommand.cxx +++ b/Source/CTest/cmCTestUpdateCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestUpdateCommand.h" #include diff --git a/Source/CTest/cmCTestUpdateCommand.h b/Source/CTest/cmCTestUpdateCommand.h index 7c58beb..93316de 100644 --- a/Source/CTest/cmCTestUpdateCommand.h +++ b/Source/CTest/cmCTestUpdateCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestUploadCommand.cxx b/Source/CTest/cmCTestUploadCommand.cxx index 4ec4201..e93c536 100644 --- a/Source/CTest/cmCTestUploadCommand.cxx +++ b/Source/CTest/cmCTestUploadCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestUploadCommand.h" #include diff --git a/Source/CTest/cmCTestUploadCommand.h b/Source/CTest/cmCTestUploadCommand.h index 93fbc35..aafe823 100644 --- a/Source/CTest/cmCTestUploadCommand.h +++ b/Source/CTest/cmCTestUploadCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmCTestVC.cxx b/Source/CTest/cmCTestVC.cxx index c88c1ad..ea38c26 100644 --- a/Source/CTest/cmCTestVC.cxx +++ b/Source/CTest/cmCTestVC.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTestVC.h" #include diff --git a/Source/CTest/cmCTestVC.h b/Source/CTest/cmCTestVC.h index 52570c0..5ca5d75 100644 --- a/Source/CTest/cmCTestVC.h +++ b/Source/CTest/cmCTestVC.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseBlanketJSCoverage.cxx b/Source/CTest/cmParseBlanketJSCoverage.cxx index 3a6651f..5810b7d 100644 --- a/Source/CTest/cmParseBlanketJSCoverage.cxx +++ b/Source/CTest/cmParseBlanketJSCoverage.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmParseBlanketJSCoverage.h" #include diff --git a/Source/CTest/cmParseBlanketJSCoverage.h b/Source/CTest/cmParseBlanketJSCoverage.h index e107454..404ccd6 100644 --- a/Source/CTest/cmParseBlanketJSCoverage.h +++ b/Source/CTest/cmParseBlanketJSCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseCacheCoverage.h b/Source/CTest/cmParseCacheCoverage.h index 53be6fb..44b51b7 100644 --- a/Source/CTest/cmParseCacheCoverage.h +++ b/Source/CTest/cmParseCacheCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseCoberturaCoverage.h b/Source/CTest/cmParseCoberturaCoverage.h index 76cee3a..865dd1e 100644 --- a/Source/CTest/cmParseCoberturaCoverage.h +++ b/Source/CTest/cmParseCoberturaCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseDelphiCoverage.h b/Source/CTest/cmParseDelphiCoverage.h index 7fe33e2..d114d54 100644 --- a/Source/CTest/cmParseDelphiCoverage.h +++ b/Source/CTest/cmParseDelphiCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseGTMCoverage.h b/Source/CTest/cmParseGTMCoverage.h index 1d9e610..4e606d8 100644 --- a/Source/CTest/cmParseGTMCoverage.h +++ b/Source/CTest/cmParseGTMCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseJacocoCoverage.h b/Source/CTest/cmParseJacocoCoverage.h index 077d960..93bfe09 100644 --- a/Source/CTest/cmParseJacocoCoverage.h +++ b/Source/CTest/cmParseJacocoCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParseMumpsCoverage.h b/Source/CTest/cmParseMumpsCoverage.h index e325fd9..9d266c4 100644 --- a/Source/CTest/cmParseMumpsCoverage.h +++ b/Source/CTest/cmParseMumpsCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmParsePHPCoverage.h b/Source/CTest/cmParsePHPCoverage.h index 797fff6..c2856e4 100644 --- a/Source/CTest/cmParsePHPCoverage.h +++ b/Source/CTest/cmParsePHPCoverage.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmProcess.cxx b/Source/CTest/cmProcess.cxx index acaead7..eefbbcf 100644 --- a/Source/CTest/cmProcess.cxx +++ b/Source/CTest/cmProcess.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmProcess.h" #include diff --git a/Source/CTest/cmProcess.h b/Source/CTest/cmProcess.h index 24f0ed4..33b781c 100644 --- a/Source/CTest/cmProcess.h +++ b/Source/CTest/cmProcess.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CTest/cmUVJobServerClient.cxx b/Source/CTest/cmUVJobServerClient.cxx index e528c25..6ea5452 100644 --- a/Source/CTest/cmUVJobServerClient.cxx +++ b/Source/CTest/cmUVJobServerClient.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmUVJobServerClient.h" #include diff --git a/Source/CTest/cmUVJobServerClient.h b/Source/CTest/cmUVJobServerClient.h index bbb5f08..c52407e 100644 --- a/Source/CTest/cmUVJobServerClient.h +++ b/Source/CTest/cmUVJobServerClient.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/CMakeLists.txt b/Source/CursesDialog/CMakeLists.txt index c24ee76..bd2aee3 100644 --- a/Source/CursesDialog/CMakeLists.txt +++ b/Source/CursesDialog/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. add_executable(ccmake ccmake.cxx diff --git a/Source/CursesDialog/ccmake.cxx b/Source/CursesDialog/ccmake.cxx index c46d91a..8385b13 100644 --- a/Source/CursesDialog/ccmake.cxx +++ b/Source/CursesDialog/ccmake.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Source/CursesDialog/cmCursesBoolWidget.cxx b/Source/CursesDialog/cmCursesBoolWidget.cxx index c4dbed8..ca308c8 100644 --- a/Source/CursesDialog/cmCursesBoolWidget.cxx +++ b/Source/CursesDialog/cmCursesBoolWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesBoolWidget.h" #include diff --git a/Source/CursesDialog/cmCursesBoolWidget.h b/Source/CursesDialog/cmCursesBoolWidget.h index 746825b..d9fa96f 100644 --- a/Source/CursesDialog/cmCursesBoolWidget.h +++ b/Source/CursesDialog/cmCursesBoolWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesCacheEntryComposite.cxx b/Source/CursesDialog/cmCursesCacheEntryComposite.cxx index 9f49ee2..557d32c 100644 --- a/Source/CursesDialog/cmCursesCacheEntryComposite.cxx +++ b/Source/CursesDialog/cmCursesCacheEntryComposite.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesCacheEntryComposite.h" #include diff --git a/Source/CursesDialog/cmCursesCacheEntryComposite.h b/Source/CursesDialog/cmCursesCacheEntryComposite.h index 2017a9f..964b988 100644 --- a/Source/CursesDialog/cmCursesCacheEntryComposite.h +++ b/Source/CursesDialog/cmCursesCacheEntryComposite.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesColor.cxx b/Source/CursesDialog/cmCursesColor.cxx index c0b468b..1b29076 100644 --- a/Source/CursesDialog/cmCursesColor.cxx +++ b/Source/CursesDialog/cmCursesColor.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesColor.h" #include diff --git a/Source/CursesDialog/cmCursesColor.h b/Source/CursesDialog/cmCursesColor.h index 4e8a1e4..3aed125 100644 --- a/Source/CursesDialog/cmCursesColor.h +++ b/Source/CursesDialog/cmCursesColor.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once class cmCursesColor diff --git a/Source/CursesDialog/cmCursesDummyWidget.cxx b/Source/CursesDialog/cmCursesDummyWidget.cxx index da0478a..5045bbd 100644 --- a/Source/CursesDialog/cmCursesDummyWidget.cxx +++ b/Source/CursesDialog/cmCursesDummyWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesDummyWidget.h" #include "cmCursesWidget.h" diff --git a/Source/CursesDialog/cmCursesDummyWidget.h b/Source/CursesDialog/cmCursesDummyWidget.h index 4347746..b3c6f8f 100644 --- a/Source/CursesDialog/cmCursesDummyWidget.h +++ b/Source/CursesDialog/cmCursesDummyWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesFilePathWidget.cxx b/Source/CursesDialog/cmCursesFilePathWidget.cxx index 518da4f..4471058 100644 --- a/Source/CursesDialog/cmCursesFilePathWidget.cxx +++ b/Source/CursesDialog/cmCursesFilePathWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesFilePathWidget.h" #include "cmCursesPathWidget.h" diff --git a/Source/CursesDialog/cmCursesFilePathWidget.h b/Source/CursesDialog/cmCursesFilePathWidget.h index 2ae5d14..74bdb0a 100644 --- a/Source/CursesDialog/cmCursesFilePathWidget.h +++ b/Source/CursesDialog/cmCursesFilePathWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesForm.cxx b/Source/CursesDialog/cmCursesForm.cxx index c02c5a4..93d4b0f 100644 --- a/Source/CursesDialog/cmCursesForm.cxx +++ b/Source/CursesDialog/cmCursesForm.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesForm.h" #include diff --git a/Source/CursesDialog/cmCursesForm.h b/Source/CursesDialog/cmCursesForm.h index 7e6e129..7bae401 100644 --- a/Source/CursesDialog/cmCursesForm.h +++ b/Source/CursesDialog/cmCursesForm.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesLabelWidget.cxx b/Source/CursesDialog/cmCursesLabelWidget.cxx index f8dd132..44d94c4 100644 --- a/Source/CursesDialog/cmCursesLabelWidget.cxx +++ b/Source/CursesDialog/cmCursesLabelWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesLabelWidget.h" #include "cmCursesWidget.h" diff --git a/Source/CursesDialog/cmCursesLabelWidget.h b/Source/CursesDialog/cmCursesLabelWidget.h index 698491d..0a957c9 100644 --- a/Source/CursesDialog/cmCursesLabelWidget.h +++ b/Source/CursesDialog/cmCursesLabelWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesLongMessageForm.cxx b/Source/CursesDialog/cmCursesLongMessageForm.cxx index 8c3982a..8608c37 100644 --- a/Source/CursesDialog/cmCursesLongMessageForm.cxx +++ b/Source/CursesDialog/cmCursesLongMessageForm.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesLongMessageForm.h" #include diff --git a/Source/CursesDialog/cmCursesLongMessageForm.h b/Source/CursesDialog/cmCursesLongMessageForm.h index 4421120..f2e29ed 100644 --- a/Source/CursesDialog/cmCursesLongMessageForm.h +++ b/Source/CursesDialog/cmCursesLongMessageForm.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesMainForm.cxx b/Source/CursesDialog/cmCursesMainForm.cxx index 23a28db..cd42fb2 100644 --- a/Source/CursesDialog/cmCursesMainForm.cxx +++ b/Source/CursesDialog/cmCursesMainForm.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesMainForm.h" #include diff --git a/Source/CursesDialog/cmCursesMainForm.h b/Source/CursesDialog/cmCursesMainForm.h index 9dbbfdd..d92b6c2 100644 --- a/Source/CursesDialog/cmCursesMainForm.h +++ b/Source/CursesDialog/cmCursesMainForm.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesOptionsWidget.cxx b/Source/CursesDialog/cmCursesOptionsWidget.cxx index dd54a70..c19ccde 100644 --- a/Source/CursesDialog/cmCursesOptionsWidget.cxx +++ b/Source/CursesDialog/cmCursesOptionsWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesOptionsWidget.h" #include "cmCursesColor.h" diff --git a/Source/CursesDialog/cmCursesOptionsWidget.h b/Source/CursesDialog/cmCursesOptionsWidget.h index 311c4f2..80ba37f 100644 --- a/Source/CursesDialog/cmCursesOptionsWidget.h +++ b/Source/CursesDialog/cmCursesOptionsWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesPathWidget.cxx b/Source/CursesDialog/cmCursesPathWidget.cxx index 8ed42de..4bdd5fb 100644 --- a/Source/CursesDialog/cmCursesPathWidget.cxx +++ b/Source/CursesDialog/cmCursesPathWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesPathWidget.h" #include diff --git a/Source/CursesDialog/cmCursesPathWidget.h b/Source/CursesDialog/cmCursesPathWidget.h index 79e342e..7aa4545 100644 --- a/Source/CursesDialog/cmCursesPathWidget.h +++ b/Source/CursesDialog/cmCursesPathWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesStandardIncludes.h b/Source/CursesDialog/cmCursesStandardIncludes.h index 9745b97..9797306 100644 --- a/Source/CursesDialog/cmCursesStandardIncludes.h +++ b/Source/CursesDialog/cmCursesStandardIncludes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesStringWidget.cxx b/Source/CursesDialog/cmCursesStringWidget.cxx index e1cf01a..d472236 100644 --- a/Source/CursesDialog/cmCursesStringWidget.cxx +++ b/Source/CursesDialog/cmCursesStringWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesStringWidget.h" #include diff --git a/Source/CursesDialog/cmCursesStringWidget.h b/Source/CursesDialog/cmCursesStringWidget.h index d125fa5..6d94369 100644 --- a/Source/CursesDialog/cmCursesStringWidget.h +++ b/Source/CursesDialog/cmCursesStringWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/cmCursesWidget.cxx b/Source/CursesDialog/cmCursesWidget.cxx index 0568290..321db8e 100644 --- a/Source/CursesDialog/cmCursesWidget.cxx +++ b/Source/CursesDialog/cmCursesWidget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCursesWidget.h" cmCursesWidget::cmCursesWidget(int width, int height, int left, int top) diff --git a/Source/CursesDialog/cmCursesWidget.h b/Source/CursesDialog/cmCursesWidget.h index e81552f..a65f935 100644 --- a/Source/CursesDialog/cmCursesWidget.h +++ b/Source/CursesDialog/cmCursesWidget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/CursesDialog/form/CMakeLists.txt b/Source/CursesDialog/form/CMakeLists.txt index 63214e3..dbf4af0 100644 --- a/Source/CursesDialog/form/CMakeLists.txt +++ b/Source/CursesDialog/form/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. project(CMAKE_FORM) diff --git a/Source/CursesDialog/form/cmFormConfigure.h.in b/Source/CursesDialog/form/cmFormConfigure.h.in index 511c525..faf35e7 100644 --- a/Source/CursesDialog/form/cmFormConfigure.h.in +++ b/Source/CursesDialog/form/cmFormConfigure.h.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef CMFORMCONFIGURE_H #define CMFORMCONFIGURE_H diff --git a/Source/LexerParser/cmCTestResourceGroupsLexer.cxx b/Source/LexerParser/cmCTestResourceGroupsLexer.cxx index f1d351a..2509bdb 100644 --- a/Source/LexerParser/cmCTestResourceGroupsLexer.cxx +++ b/Source/LexerParser/cmCTestResourceGroupsLexer.cxx @@ -641,7 +641,7 @@ static const flex_int16_t yy_chk[44] = #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C++ and modified to build everywhere. diff --git a/Source/LexerParser/cmCTestResourceGroupsLexer.in.l b/Source/LexerParser/cmCTestResourceGroupsLexer.in.l index ac9cbaf..ec2a186 100644 --- a/Source/LexerParser/cmCTestResourceGroupsLexer.in.l +++ b/Source/LexerParser/cmCTestResourceGroupsLexer.in.l @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C++ and modified to build everywhere. diff --git a/Source/LexerParser/cmDependsJavaLexer.cxx b/Source/LexerParser/cmDependsJavaLexer.cxx index bfe7e64..bcb2311 100644 --- a/Source/LexerParser/cmDependsJavaLexer.cxx +++ b/Source/LexerParser/cmDependsJavaLexer.cxx @@ -842,7 +842,7 @@ static const flex_int16_t yy_chk[479] = #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C++ and modified to build everywhere. diff --git a/Source/LexerParser/cmDependsJavaLexer.in.l b/Source/LexerParser/cmDependsJavaLexer.in.l index 942e007..846b9c5 100644 --- a/Source/LexerParser/cmDependsJavaLexer.in.l +++ b/Source/LexerParser/cmDependsJavaLexer.in.l @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C++ and modified to build everywhere. diff --git a/Source/LexerParser/cmDependsJavaParser.cxx b/Source/LexerParser/cmDependsJavaParser.cxx index 6755c70..e85bf98 100644 --- a/Source/LexerParser/cmDependsJavaParser.cxx +++ b/Source/LexerParser/cmDependsJavaParser.cxx @@ -75,7 +75,7 @@ #line 1 "cmDependsJavaParser.y" /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C and modified to build everywhere. diff --git a/Source/LexerParser/cmDependsJavaParser.y b/Source/LexerParser/cmDependsJavaParser.y index d64043a..01d0017 100644 --- a/Source/LexerParser/cmDependsJavaParser.y +++ b/Source/LexerParser/cmDependsJavaParser.y @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C and modified to build everywhere. diff --git a/Source/LexerParser/cmExprLexer.cxx b/Source/LexerParser/cmExprLexer.cxx index 5a76590..d05dfd8 100644 --- a/Source/LexerParser/cmExprLexer.cxx +++ b/Source/LexerParser/cmExprLexer.cxx @@ -646,7 +646,7 @@ static const flex_int16_t yy_chk[56] = #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C++ and modified to build everywhere. diff --git a/Source/LexerParser/cmExprLexer.in.l b/Source/LexerParser/cmExprLexer.in.l index 90c1cc3..9a5f42f 100644 --- a/Source/LexerParser/cmExprLexer.in.l +++ b/Source/LexerParser/cmExprLexer.in.l @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C++ and modified to build everywhere. diff --git a/Source/LexerParser/cmExprParser.cxx b/Source/LexerParser/cmExprParser.cxx index 80c0abd..042e484 100644 --- a/Source/LexerParser/cmExprParser.cxx +++ b/Source/LexerParser/cmExprParser.cxx @@ -75,7 +75,7 @@ #line 1 "cmExprParser.y" /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C and modified to build everywhere. diff --git a/Source/LexerParser/cmExprParser.y b/Source/LexerParser/cmExprParser.y index 51df56e..68f7882 100644 --- a/Source/LexerParser/cmExprParser.y +++ b/Source/LexerParser/cmExprParser.y @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C and modified to build everywhere. diff --git a/Source/LexerParser/cmFortranLexer.cxx b/Source/LexerParser/cmFortranLexer.cxx index df65472..3e0a4bd 100644 --- a/Source/LexerParser/cmFortranLexer.cxx +++ b/Source/LexerParser/cmFortranLexer.cxx @@ -820,7 +820,7 @@ static const flex_int16_t yy_chk[542] = #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /*------------------------------------------------------------------------- Portions of this source have been derived from makedepf90 version 2.8.8, diff --git a/Source/LexerParser/cmFortranLexer.in.l b/Source/LexerParser/cmFortranLexer.in.l index 7d97699..ed324db 100644 --- a/Source/LexerParser/cmFortranLexer.in.l +++ b/Source/LexerParser/cmFortranLexer.in.l @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /*------------------------------------------------------------------------- Portions of this source have been derived from makedepf90 version 2.8.8, diff --git a/Source/LexerParser/cmFortranParser.cxx b/Source/LexerParser/cmFortranParser.cxx index f25856a..a43f4fc 100644 --- a/Source/LexerParser/cmFortranParser.cxx +++ b/Source/LexerParser/cmFortranParser.cxx @@ -75,7 +75,7 @@ #line 1 "cmFortranParser.y" /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /*------------------------------------------------------------------------- Portions of this source have been derived from makedepf90 version 2.8.8, diff --git a/Source/LexerParser/cmFortranParser.y b/Source/LexerParser/cmFortranParser.y index 0b27060..431d6ab 100644 --- a/Source/LexerParser/cmFortranParser.y +++ b/Source/LexerParser/cmFortranParser.y @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /*------------------------------------------------------------------------- Portions of this source have been derived from makedepf90 version 2.8.8, diff --git a/Source/LexerParser/cmGccDepfileLexer.cxx b/Source/LexerParser/cmGccDepfileLexer.cxx index d926c8b..f1045a7 100644 --- a/Source/LexerParser/cmGccDepfileLexer.cxx +++ b/Source/LexerParser/cmGccDepfileLexer.cxx @@ -646,7 +646,7 @@ static const flex_int16_t yy_chk[57] = #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* IWYU pragma: no_forward_declare yyguts_t */ diff --git a/Source/LexerParser/cmGccDepfileLexer.in.l b/Source/LexerParser/cmGccDepfileLexer.in.l index a0a0f22..0133742 100644 --- a/Source/LexerParser/cmGccDepfileLexer.in.l +++ b/Source/LexerParser/cmGccDepfileLexer.in.l @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* IWYU pragma: no_forward_declare yyguts_t */ diff --git a/Source/LexerParser/cmListFileLexer.c b/Source/LexerParser/cmListFileLexer.c index ec7424c..08fd0a9 100644 --- a/Source/LexerParser/cmListFileLexer.c +++ b/Source/LexerParser/cmListFileLexer.c @@ -748,7 +748,7 @@ static const flex_int32_t yy_rule_can_match_eol[25] = #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C and modified to build everywhere. diff --git a/Source/LexerParser/cmListFileLexer.in.l b/Source/LexerParser/cmListFileLexer.in.l index 94cf8a5..623a36b 100644 --- a/Source/LexerParser/cmListFileLexer.in.l +++ b/Source/LexerParser/cmListFileLexer.in.l @@ -1,6 +1,6 @@ %{ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This file must be translated to C and modified to build everywhere. diff --git a/Source/Modules/CheckCXXLinkerFlag.cmake b/Source/Modules/CheckCXXLinkerFlag.cmake index 6cb1ba3..3df67d0 100644 --- a/Source/Modules/CheckCXXLinkerFlag.cmake +++ b/Source/Modules/CheckCXXLinkerFlag.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include_guard(GLOBAL) include(CheckCXXSourceCompiles) diff --git a/Source/Modules/FindJsonCpp.cmake b/Source/Modules/FindJsonCpp.cmake index b142bfb..beafeb3 100644 --- a/Source/Modules/FindJsonCpp.cmake +++ b/Source/Modules/FindJsonCpp.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindJsonCpp diff --git a/Source/Modules/FindLibRHash.cmake b/Source/Modules/FindLibRHash.cmake index 9adc9af..7cd2006 100644 --- a/Source/Modules/FindLibRHash.cmake +++ b/Source/Modules/FindLibRHash.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibRHash diff --git a/Source/Modules/FindLibUUID.cmake b/Source/Modules/FindLibUUID.cmake index aba1c27..cc8168a 100644 --- a/Source/Modules/FindLibUUID.cmake +++ b/Source/Modules/FindLibUUID.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibUUID diff --git a/Source/Modules/FindLibUV.cmake b/Source/Modules/FindLibUV.cmake index b374dcc..049d31b 100644 --- a/Source/Modules/FindLibUV.cmake +++ b/Source/Modules/FindLibUV.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. #[=======================================================================[.rst: FindLibUV diff --git a/Source/QtDialog/AddCacheEntry.cxx b/Source/QtDialog/AddCacheEntry.cxx index 817f79e..3c3be35 100644 --- a/Source/QtDialog/AddCacheEntry.cxx +++ b/Source/QtDialog/AddCacheEntry.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "AddCacheEntry.h" #include "QCMakeSizeType.h" diff --git a/Source/QtDialog/AddCacheEntry.h b/Source/QtDialog/AddCacheEntry.h index 2837e3d..c289c6b 100644 --- a/Source/QtDialog/AddCacheEntry.h +++ b/Source/QtDialog/AddCacheEntry.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMake.h" diff --git a/Source/QtDialog/CMakeGUIExec.cxx b/Source/QtDialog/CMakeGUIExec.cxx index 1572112..2b35466 100644 --- a/Source/QtDialog/CMakeGUIExec.cxx +++ b/Source/QtDialog/CMakeGUIExec.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include diff --git a/Source/QtDialog/CMakeLists.txt b/Source/QtDialog/CMakeLists.txt index 187fedc..318849e 100644 --- a/Source/QtDialog/CMakeLists.txt +++ b/Source/QtDialog/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. project(QtDialog) CMake_OPTIONAL_COMPONENT(cmake-gui) diff --git a/Source/QtDialog/CMakeSetup.cxx b/Source/QtDialog/CMakeSetup.cxx index f634161..234b587 100644 --- a/Source/QtDialog/CMakeSetup.cxx +++ b/Source/QtDialog/CMakeSetup.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include "QCMake.h" // include to disable MS warnings diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index 64ae722..c3aaba0 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "CMakeSetupDialog.h" #include diff --git a/Source/QtDialog/CMakeSetupDialog.h b/Source/QtDialog/CMakeSetupDialog.h index cc9bd14..e5cd753 100644 --- a/Source/QtDialog/CMakeSetupDialog.h +++ b/Source/QtDialog/CMakeSetupDialog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/QtDialog/EnvironmentDialog.cxx b/Source/QtDialog/EnvironmentDialog.cxx index d6cf0da..8ffb7f1 100644 --- a/Source/QtDialog/EnvironmentDialog.cxx +++ b/Source/QtDialog/EnvironmentDialog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "EnvironmentDialog.h" #include "QCMakeWidgets.h" diff --git a/Source/QtDialog/EnvironmentDialog.h b/Source/QtDialog/EnvironmentDialog.h index 93fca07..8665c71 100644 --- a/Source/QtDialog/EnvironmentDialog.h +++ b/Source/QtDialog/EnvironmentDialog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx index dac4f53..78f6b16 100644 --- a/Source/QtDialog/QCMake.cxx +++ b/Source/QtDialog/QCMake.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMake.h" #include diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index 71e8656..7eb8bc7 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/QtDialog/QCMakeCacheView.cxx b/Source/QtDialog/QCMakeCacheView.cxx index 90f5ac2..c9fbc26 100644 --- a/Source/QtDialog/QCMakeCacheView.cxx +++ b/Source/QtDialog/QCMakeCacheView.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakeCacheView.h" #include "QCMakeSizeType.h" diff --git a/Source/QtDialog/QCMakeCacheView.h b/Source/QtDialog/QCMakeCacheView.h index 4df17f7..6e28670 100644 --- a/Source/QtDialog/QCMakeCacheView.h +++ b/Source/QtDialog/QCMakeCacheView.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMake.h" diff --git a/Source/QtDialog/QCMakePreset.cxx b/Source/QtDialog/QCMakePreset.cxx index 2a93f9c..5feb90b 100644 --- a/Source/QtDialog/QCMakePreset.cxx +++ b/Source/QtDialog/QCMakePreset.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakePreset.h" bool operator==(QCMakePreset const& lhs, QCMakePreset const& rhs) diff --git a/Source/QtDialog/QCMakePreset.h b/Source/QtDialog/QCMakePreset.h index 7359e59..777aa4a 100644 --- a/Source/QtDialog/QCMakePreset.h +++ b/Source/QtDialog/QCMakePreset.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/QtDialog/QCMakePresetComboBox.cxx b/Source/QtDialog/QCMakePresetComboBox.cxx index 2625bc5..49d9e8e 100644 --- a/Source/QtDialog/QCMakePresetComboBox.cxx +++ b/Source/QtDialog/QCMakePresetComboBox.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakePresetComboBox.h" #include "QCMakePresetItemModel.h" diff --git a/Source/QtDialog/QCMakePresetComboBox.h b/Source/QtDialog/QCMakePresetComboBox.h index 271c533..47d8b8e 100644 --- a/Source/QtDialog/QCMakePresetComboBox.h +++ b/Source/QtDialog/QCMakePresetComboBox.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMakePreset.h" diff --git a/Source/QtDialog/QCMakePresetItemModel.cxx b/Source/QtDialog/QCMakePresetItemModel.cxx index ac071f2..dbc2ee8 100644 --- a/Source/QtDialog/QCMakePresetItemModel.cxx +++ b/Source/QtDialog/QCMakePresetItemModel.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakePresetItemModel.h" #include "QCMakeSizeType.h" diff --git a/Source/QtDialog/QCMakePresetItemModel.h b/Source/QtDialog/QCMakePresetItemModel.h index 388a2a2..b565cbd 100644 --- a/Source/QtDialog/QCMakePresetItemModel.h +++ b/Source/QtDialog/QCMakePresetItemModel.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/QtDialog/QCMakeSizeType.h b/Source/QtDialog/QCMakeSizeType.h index b5cac17..cc59862 100644 --- a/Source/QtDialog/QCMakeSizeType.h +++ b/Source/QtDialog/QCMakeSizeType.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/QtDialog/QCMakeWidgets.cxx b/Source/QtDialog/QCMakeWidgets.cxx index e414b11..ef9a43d 100644 --- a/Source/QtDialog/QCMakeWidgets.cxx +++ b/Source/QtDialog/QCMakeWidgets.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #define QT_DEPRECATED_WARNINGS_SINCE QT_VERSION_CHECK(5, 14, 0) diff --git a/Source/QtDialog/QCMakeWidgets.h b/Source/QtDialog/QCMakeWidgets.h index 4d3b793..543a1c5 100644 --- a/Source/QtDialog/QCMakeWidgets.h +++ b/Source/QtDialog/QCMakeWidgets.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/QtDialog/RegexExplorer.cxx b/Source/QtDialog/RegexExplorer.cxx index dbe7d1c..9065f66 100644 --- a/Source/QtDialog/RegexExplorer.cxx +++ b/Source/QtDialog/RegexExplorer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "RegexExplorer.h" RegexExplorer::RegexExplorer(QWidget* p) diff --git a/Source/QtDialog/RegexExplorer.h b/Source/QtDialog/RegexExplorer.h index 160bd04..dc17d31 100644 --- a/Source/QtDialog/RegexExplorer.h +++ b/Source/QtDialog/RegexExplorer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/QtDialog/WarningMessagesDialog.cxx b/Source/QtDialog/WarningMessagesDialog.cxx index 1fcf2b1..8cf4077 100644 --- a/Source/QtDialog/WarningMessagesDialog.cxx +++ b/Source/QtDialog/WarningMessagesDialog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "WarningMessagesDialog.h" WarningMessagesDialog::WarningMessagesDialog(QWidget* prnt, QCMake* instance) diff --git a/Source/QtDialog/WarningMessagesDialog.h b/Source/QtDialog/WarningMessagesDialog.h index bb01704..0cde8ff 100644 --- a/Source/QtDialog/WarningMessagesDialog.h +++ b/Source/QtDialog/WarningMessagesDialog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMake.h" diff --git a/Source/bindexplib.cxx b/Source/bindexplib.cxx index b58a1c4..587e2c7 100644 --- a/Source/bindexplib.cxx +++ b/Source/bindexplib.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /*------------------------------------------------------------------------- Portions of this source have been derived from the 'bindexplib' tool provided by the CERN ROOT Data Analysis Framework project (root.cern.ch). diff --git a/Source/bindexplib.h b/Source/bindexplib.h index f9c7405..f98ba01 100644 --- a/Source/bindexplib.h +++ b/Source/bindexplib.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddCompileDefinitionsCommand.cxx b/Source/cmAddCompileDefinitionsCommand.cxx index b00a4a7..cc0c28a 100644 --- a/Source/cmAddCompileDefinitionsCommand.cxx +++ b/Source/cmAddCompileDefinitionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddCompileDefinitionsCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddCompileDefinitionsCommand.h b/Source/cmAddCompileDefinitionsCommand.h index 29282d6..def0b2e 100644 --- a/Source/cmAddCompileDefinitionsCommand.h +++ b/Source/cmAddCompileDefinitionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddCompileOptionsCommand.cxx b/Source/cmAddCompileOptionsCommand.cxx index 8ccb512..9c7be38 100644 --- a/Source/cmAddCompileOptionsCommand.cxx +++ b/Source/cmAddCompileOptionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddCompileOptionsCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddCompileOptionsCommand.h b/Source/cmAddCompileOptionsCommand.h index 076a427..9380432 100644 --- a/Source/cmAddCompileOptionsCommand.h +++ b/Source/cmAddCompileOptionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddCustomCommandCommand.cxx b/Source/cmAddCustomCommandCommand.cxx index 2103c0f..60ed118 100644 --- a/Source/cmAddCustomCommandCommand.cxx +++ b/Source/cmAddCustomCommandCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddCustomCommandCommand.h" #include diff --git a/Source/cmAddCustomCommandCommand.h b/Source/cmAddCustomCommandCommand.h index 383d116..54b62d0 100644 --- a/Source/cmAddCustomCommandCommand.h +++ b/Source/cmAddCustomCommandCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddCustomTargetCommand.cxx b/Source/cmAddCustomTargetCommand.cxx index 3eafaed..92bc25e 100644 --- a/Source/cmAddCustomTargetCommand.cxx +++ b/Source/cmAddCustomTargetCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddCustomTargetCommand.h" #include diff --git a/Source/cmAddCustomTargetCommand.h b/Source/cmAddCustomTargetCommand.h index 3b784cb..88e4a40 100644 --- a/Source/cmAddCustomTargetCommand.h +++ b/Source/cmAddCustomTargetCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddDefinitionsCommand.cxx b/Source/cmAddDefinitionsCommand.cxx index 0b10aee..4ab82aa 100644 --- a/Source/cmAddDefinitionsCommand.cxx +++ b/Source/cmAddDefinitionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddDefinitionsCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddDefinitionsCommand.h b/Source/cmAddDefinitionsCommand.h index 45b4554..4d28e03 100644 --- a/Source/cmAddDefinitionsCommand.h +++ b/Source/cmAddDefinitionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddDependenciesCommand.cxx b/Source/cmAddDependenciesCommand.cxx index aa04018..cf938f7 100644 --- a/Source/cmAddDependenciesCommand.cxx +++ b/Source/cmAddDependenciesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddDependenciesCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddDependenciesCommand.h b/Source/cmAddDependenciesCommand.h index a767550..b4e4933 100644 --- a/Source/cmAddDependenciesCommand.h +++ b/Source/cmAddDependenciesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddExecutableCommand.cxx b/Source/cmAddExecutableCommand.cxx index 055685c..13df1e3 100644 --- a/Source/cmAddExecutableCommand.cxx +++ b/Source/cmAddExecutableCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddExecutableCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddExecutableCommand.h b/Source/cmAddExecutableCommand.h index 032c14d..c4eae6a 100644 --- a/Source/cmAddExecutableCommand.h +++ b/Source/cmAddExecutableCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddLibraryCommand.cxx b/Source/cmAddLibraryCommand.cxx index 3f47914..67ec3b9 100644 --- a/Source/cmAddLibraryCommand.cxx +++ b/Source/cmAddLibraryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddLibraryCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddLibraryCommand.h b/Source/cmAddLibraryCommand.h index a4a0ea0..326c879 100644 --- a/Source/cmAddLibraryCommand.h +++ b/Source/cmAddLibraryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddLinkOptionsCommand.cxx b/Source/cmAddLinkOptionsCommand.cxx index 7ed31bd..33ad9ed 100644 --- a/Source/cmAddLinkOptionsCommand.cxx +++ b/Source/cmAddLinkOptionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddLinkOptionsCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmAddLinkOptionsCommand.h b/Source/cmAddLinkOptionsCommand.h index 5c9d5e4..5ed877a 100644 --- a/Source/cmAddLinkOptionsCommand.h +++ b/Source/cmAddLinkOptionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddSubDirectoryCommand.cxx b/Source/cmAddSubDirectoryCommand.cxx index 47b6d1d..0691182 100644 --- a/Source/cmAddSubDirectoryCommand.cxx +++ b/Source/cmAddSubDirectoryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddSubDirectoryCommand.h" #include diff --git a/Source/cmAddSubDirectoryCommand.h b/Source/cmAddSubDirectoryCommand.h index ece3b27..4af3e04 100644 --- a/Source/cmAddSubDirectoryCommand.h +++ b/Source/cmAddSubDirectoryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAddTestCommand.cxx b/Source/cmAddTestCommand.cxx index ff17e87..28b4b53 100644 --- a/Source/cmAddTestCommand.cxx +++ b/Source/cmAddTestCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAddTestCommand.h" #include diff --git a/Source/cmAddTestCommand.h b/Source/cmAddTestCommand.h index 8cba2b1..10c305e 100644 --- a/Source/cmAddTestCommand.h +++ b/Source/cmAddTestCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAffinity.cxx b/Source/cmAffinity.cxx index 965ab31..5be4758 100644 --- a/Source/cmAffinity.cxx +++ b/Source/cmAffinity.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAffinity.h" #include diff --git a/Source/cmAffinity.h b/Source/cmAffinity.h index 3775bae..e496d1e 100644 --- a/Source/cmAffinity.h +++ b/Source/cmAffinity.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAlgorithms.h b/Source/cmAlgorithms.h index 227434f..c76788e 100644 --- a/Source/cmAlgorithms.h +++ b/Source/cmAlgorithms.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmArchiveWrite.cxx b/Source/cmArchiveWrite.cxx index 62f6f7f..0828dcb 100644 --- a/Source/cmArchiveWrite.cxx +++ b/Source/cmArchiveWrite.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmArchiveWrite.h" #include diff --git a/Source/cmArchiveWrite.h b/Source/cmArchiveWrite.h index 381a27e..3937e49 100644 --- a/Source/cmArchiveWrite.h +++ b/Source/cmArchiveWrite.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmArgumentParser.cxx b/Source/cmArgumentParser.cxx index 22dd308..5c4fc0d 100644 --- a/Source/cmArgumentParser.cxx +++ b/Source/cmArgumentParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmArgumentParser.h" #include diff --git a/Source/cmArgumentParser.h b/Source/cmArgumentParser.h index c479b27..e8cd78e 100644 --- a/Source/cmArgumentParser.h +++ b/Source/cmArgumentParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmArgumentParserTypes.h b/Source/cmArgumentParserTypes.h index e89c940..b12cfc0 100644 --- a/Source/cmArgumentParserTypes.h +++ b/Source/cmArgumentParserTypes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmAuxSourceDirectoryCommand.cxx b/Source/cmAuxSourceDirectoryCommand.cxx index b2e3cad..d571a1a 100644 --- a/Source/cmAuxSourceDirectoryCommand.cxx +++ b/Source/cmAuxSourceDirectoryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmAuxSourceDirectoryCommand.h" #include diff --git a/Source/cmAuxSourceDirectoryCommand.h b/Source/cmAuxSourceDirectoryCommand.h index 29ee429..ed9af68 100644 --- a/Source/cmAuxSourceDirectoryCommand.h +++ b/Source/cmAuxSourceDirectoryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmBase32.cxx b/Source/cmBase32.cxx index 1a79caa..e7b5fb8 100644 --- a/Source/cmBase32.cxx +++ b/Source/cmBase32.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBase32.h" // -- Static functions diff --git a/Source/cmBase32.h b/Source/cmBase32.h index c883162..4964fe2 100644 --- a/Source/cmBase32.h +++ b/Source/cmBase32.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmBinUtilsLinker.cxx b/Source/cmBinUtilsLinker.cxx index 99e85a7..4cce608 100644 --- a/Source/cmBinUtilsLinker.cxx +++ b/Source/cmBinUtilsLinker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsLinker.h" diff --git a/Source/cmBinUtilsLinker.h b/Source/cmBinUtilsLinker.h index 950c601..5b41309 100644 --- a/Source/cmBinUtilsLinker.h +++ b/Source/cmBinUtilsLinker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx index 366c8ba..0b924df 100644 --- a/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h b/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h index 311bd8e..fa7bf2c 100644 --- a/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsLinuxELFLinker.cxx b/Source/cmBinUtilsLinuxELFLinker.cxx index 98da3d1..cf338a9 100644 --- a/Source/cmBinUtilsLinuxELFLinker.cxx +++ b/Source/cmBinUtilsLinuxELFLinker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsLinuxELFLinker.h" diff --git a/Source/cmBinUtilsLinuxELFLinker.h b/Source/cmBinUtilsLinuxELFLinker.h index 0b0d8b5..1829c0b 100644 --- a/Source/cmBinUtilsLinuxELFLinker.h +++ b/Source/cmBinUtilsLinuxELFLinker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx index d676cc8..8c3dd49 100644 --- a/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h b/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h index def1dd0..6719708 100644 --- a/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx index 4e89476..4b9780e 100644 --- a/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h b/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h index 17e7f26..b36ab52 100644 --- a/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsMacOSMachOLinker.cxx b/Source/cmBinUtilsMacOSMachOLinker.cxx index 601b6c6..9867318 100644 --- a/Source/cmBinUtilsMacOSMachOLinker.cxx +++ b/Source/cmBinUtilsMacOSMachOLinker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsMacOSMachOLinker.h" diff --git a/Source/cmBinUtilsMacOSMachOLinker.h b/Source/cmBinUtilsMacOSMachOLinker.h index 546bdc6..c350dfe 100644 --- a/Source/cmBinUtilsMacOSMachOLinker.h +++ b/Source/cmBinUtilsMacOSMachOLinker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx index 09d5419..d2afe15 100644 --- a/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.h b/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.h index 9d17450..faab98e 100644 --- a/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsMacOSMachOOToolGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx index 32b29e1..8e4a9aa 100644 --- a/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h b/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h index 08e6cc7..552db10 100644 --- a/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsWindowsPEDumpbinGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx index 820296b..aa9c066 100644 --- a/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h b/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h index 9b8fa5e..3b37f53 100644 --- a/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsWindowsPELinker.cxx b/Source/cmBinUtilsWindowsPELinker.cxx index 918f563..70ddaf2 100644 --- a/Source/cmBinUtilsWindowsPELinker.cxx +++ b/Source/cmBinUtilsWindowsPELinker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsWindowsPELinker.h" diff --git a/Source/cmBinUtilsWindowsPELinker.h b/Source/cmBinUtilsWindowsPELinker.h index 6bb7875..6db0f2e 100644 --- a/Source/cmBinUtilsWindowsPELinker.h +++ b/Source/cmBinUtilsWindowsPELinker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx b/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx index 9101162..258e015 100644 --- a/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx +++ b/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.h" diff --git a/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.h b/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.h index efd6851..994235d 100644 --- a/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.h +++ b/Source/cmBinUtilsWindowsPEObjdumpGetRuntimeDependenciesTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmBlockCommand.cxx b/Source/cmBlockCommand.cxx index 6a1c4c9..98d97a3 100644 --- a/Source/cmBlockCommand.cxx +++ b/Source/cmBlockCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBlockCommand.h" diff --git a/Source/cmBlockCommand.h b/Source/cmBlockCommand.h index 5fd8f42..fd1b9cb 100644 --- a/Source/cmBlockCommand.h +++ b/Source/cmBlockCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmBreakCommand.cxx b/Source/cmBreakCommand.cxx index 40b8ca4..234ef0f 100644 --- a/Source/cmBreakCommand.cxx +++ b/Source/cmBreakCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBreakCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmBreakCommand.h b/Source/cmBreakCommand.h index 6241867..dc443ba 100644 --- a/Source/cmBreakCommand.h +++ b/Source/cmBreakCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmBuildCommand.cxx b/Source/cmBuildCommand.cxx index 75595b8..dca0538 100644 --- a/Source/cmBuildCommand.cxx +++ b/Source/cmBuildCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBuildCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmBuildCommand.h b/Source/cmBuildCommand.h index eafe185..b264bc8 100644 --- a/Source/cmBuildCommand.h +++ b/Source/cmBuildCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmBuildDatabase.cxx b/Source/cmBuildDatabase.cxx index 9770587..c80e7fb 100644 --- a/Source/cmBuildDatabase.cxx +++ b/Source/cmBuildDatabase.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmBuildDatabase.h" #include diff --git a/Source/cmBuildDatabase.h b/Source/cmBuildDatabase.h index a2733cb..d63fb0c 100644 --- a/Source/cmBuildDatabase.h +++ b/Source/cmBuildDatabase.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmBuildOptions.h b/Source/cmBuildOptions.h index 00cb288..f84b576 100644 --- a/Source/cmBuildOptions.h +++ b/Source/cmBuildOptions.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCLocaleEnvironmentScope.cxx b/Source/cmCLocaleEnvironmentScope.cxx index c6c38f8..cabf5c7 100644 --- a/Source/cmCLocaleEnvironmentScope.cxx +++ b/Source/cmCLocaleEnvironmentScope.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCLocaleEnvironmentScope.h" #include diff --git a/Source/cmCLocaleEnvironmentScope.h b/Source/cmCLocaleEnvironmentScope.h index 0919acc..c4d74f5 100644 --- a/Source/cmCLocaleEnvironmentScope.h +++ b/Source/cmCLocaleEnvironmentScope.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakeHostSystemInformationCommand.cxx b/Source/cmCMakeHostSystemInformationCommand.cxx index 1c78e97..00b59c6 100644 --- a/Source/cmCMakeHostSystemInformationCommand.cxx +++ b/Source/cmCMakeHostSystemInformationCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakeHostSystemInformationCommand.h" #include diff --git a/Source/cmCMakeHostSystemInformationCommand.h b/Source/cmCMakeHostSystemInformationCommand.h index 8a64f6a..f6e63c3 100644 --- a/Source/cmCMakeHostSystemInformationCommand.h +++ b/Source/cmCMakeHostSystemInformationCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakeLanguageCommand.cxx b/Source/cmCMakeLanguageCommand.cxx index 6bde3d4..d1ec9cf 100644 --- a/Source/cmCMakeLanguageCommand.cxx +++ b/Source/cmCMakeLanguageCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakeLanguageCommand.h" #include diff --git a/Source/cmCMakeLanguageCommand.h b/Source/cmCMakeLanguageCommand.h index d45003a..ad12915 100644 --- a/Source/cmCMakeLanguageCommand.h +++ b/Source/cmCMakeLanguageCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakeMinimumRequired.cxx b/Source/cmCMakeMinimumRequired.cxx index c6a0c9a..1a68f03 100644 --- a/Source/cmCMakeMinimumRequired.cxx +++ b/Source/cmCMakeMinimumRequired.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakeMinimumRequired.h" #include diff --git a/Source/cmCMakeMinimumRequired.h b/Source/cmCMakeMinimumRequired.h index 712d6d6..375731b 100644 --- a/Source/cmCMakeMinimumRequired.h +++ b/Source/cmCMakeMinimumRequired.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakePath.cxx b/Source/cmCMakePath.cxx index 9d82bef..5f6db32 100644 --- a/Source/cmCMakePath.cxx +++ b/Source/cmCMakePath.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakePath.h b/Source/cmCMakePath.h index e047ab7..da92424 100644 --- a/Source/cmCMakePath.h +++ b/Source/cmCMakePath.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmCMakePathCommand.cxx b/Source/cmCMakePathCommand.cxx index 97c83bb..187d7e8 100644 --- a/Source/cmCMakePathCommand.cxx +++ b/Source/cmCMakePathCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakePathCommand.h" #include diff --git a/Source/cmCMakePathCommand.h b/Source/cmCMakePathCommand.h index 49e9380..85da11d 100644 --- a/Source/cmCMakePathCommand.h +++ b/Source/cmCMakePathCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmCMakePkgConfigCommand.cxx b/Source/cmCMakePkgConfigCommand.cxx index 61ddf9c..ae7b1d3 100644 --- a/Source/cmCMakePkgConfigCommand.cxx +++ b/Source/cmCMakePkgConfigCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakePkgConfigCommand.h" diff --git a/Source/cmCMakePkgConfigCommand.h b/Source/cmCMakePkgConfigCommand.h index 5898818..49ae19b 100644 --- a/Source/cmCMakePkgConfigCommand.h +++ b/Source/cmCMakePkgConfigCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakePolicyCommand.cxx b/Source/cmCMakePolicyCommand.cxx index 81050e6..de50593 100644 --- a/Source/cmCMakePolicyCommand.cxx +++ b/Source/cmCMakePolicyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakePolicyCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmCMakePolicyCommand.h b/Source/cmCMakePolicyCommand.h index 7346b66..f0e4d53 100644 --- a/Source/cmCMakePolicyCommand.h +++ b/Source/cmCMakePolicyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakePresetsErrors.cxx b/Source/cmCMakePresetsErrors.cxx index 1e83c08..7a1450d 100644 --- a/Source/cmCMakePresetsErrors.cxx +++ b/Source/cmCMakePresetsErrors.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep #include "cmCMakePresetsErrors.h" diff --git a/Source/cmCMakePresetsErrors.h b/Source/cmCMakePresetsErrors.h index cd0b305..8bb9de9 100644 --- a/Source/cmCMakePresetsErrors.h +++ b/Source/cmCMakePresetsErrors.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakePresetsGraph.cxx b/Source/cmCMakePresetsGraph.cxx index 84e1a0f..c112622 100644 --- a/Source/cmCMakePresetsGraph.cxx +++ b/Source/cmCMakePresetsGraph.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCMakePresetsGraph.h" #include diff --git a/Source/cmCMakePresetsGraph.h b/Source/cmCMakePresetsGraph.h index 2701035..2ba6fba 100644 --- a/Source/cmCMakePresetsGraph.h +++ b/Source/cmCMakePresetsGraph.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCMakePresetsGraphInternal.h b/Source/cmCMakePresetsGraphInternal.h index 2412072..eaa215a 100644 --- a/Source/cmCMakePresetsGraphInternal.h +++ b/Source/cmCMakePresetsGraphInternal.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmCMakePresetsGraphReadJSON.cxx b/Source/cmCMakePresetsGraphReadJSON.cxx index ed843be..e76ba1d 100644 --- a/Source/cmCMakePresetsGraphReadJSON.cxx +++ b/Source/cmCMakePresetsGraphReadJSON.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmCMakePresetsGraphReadJSONBuildPresets.cxx b/Source/cmCMakePresetsGraphReadJSONBuildPresets.cxx index 8433fe4..dd95137 100644 --- a/Source/cmCMakePresetsGraphReadJSONBuildPresets.cxx +++ b/Source/cmCMakePresetsGraphReadJSONBuildPresets.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmCMakePresetsGraphReadJSONConfigurePresets.cxx b/Source/cmCMakePresetsGraphReadJSONConfigurePresets.cxx index 354f5aa..5b62d09 100644 --- a/Source/cmCMakePresetsGraphReadJSONConfigurePresets.cxx +++ b/Source/cmCMakePresetsGraphReadJSONConfigurePresets.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmCMakePresetsGraphReadJSONPackagePresets.cxx b/Source/cmCMakePresetsGraphReadJSONPackagePresets.cxx index 020acc3..e26c0c4 100644 --- a/Source/cmCMakePresetsGraphReadJSONPackagePresets.cxx +++ b/Source/cmCMakePresetsGraphReadJSONPackagePresets.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmCMakePresetsGraphReadJSONTestPresets.cxx b/Source/cmCMakePresetsGraphReadJSONTestPresets.cxx index acf6ad4..22717f2 100644 --- a/Source/cmCMakePresetsGraphReadJSONTestPresets.cxx +++ b/Source/cmCMakePresetsGraphReadJSONTestPresets.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmCMakePresetsGraphReadJSONWorkflowPresets.cxx b/Source/cmCMakePresetsGraphReadJSONWorkflowPresets.cxx index 9dc2bde..e428da4 100644 --- a/Source/cmCMakePresetsGraphReadJSONWorkflowPresets.cxx +++ b/Source/cmCMakePresetsGraphReadJSONWorkflowPresets.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmCPackPropertiesGenerator.h b/Source/cmCPackPropertiesGenerator.h index 6d777e9..55feb4e 100644 --- a/Source/cmCPackPropertiesGenerator.h +++ b/Source/cmCPackPropertiesGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 2e0b07e..75ddcc9 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCTest.h" #include diff --git a/Source/cmCTest.h b/Source/cmCTest.h index fd6d8b1..339c7e2 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index 0a4ed4a..e0dc6e3 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCacheManager.h" #include diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index 725a00a..4eb58e7 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCallVisualStudioMacro.cxx b/Source/cmCallVisualStudioMacro.cxx index 9980bd1..e6a3e02 100644 --- a/Source/cmCallVisualStudioMacro.cxx +++ b/Source/cmCallVisualStudioMacro.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCallVisualStudioMacro.h" #include diff --git a/Source/cmCallVisualStudioMacro.h b/Source/cmCallVisualStudioMacro.h index 9e92a0e..f3beab2 100644 --- a/Source/cmCallVisualStudioMacro.h +++ b/Source/cmCallVisualStudioMacro.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCommandLineArgument.h b/Source/cmCommandLineArgument.h index 65480e1..f11d1fb 100644 --- a/Source/cmCommandLineArgument.h +++ b/Source/cmCommandLineArgument.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index f4852fa..0b25313 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCommands.h" diff --git a/Source/cmCommands.h b/Source/cmCommands.h index 5605430..a4ba3a2 100644 --- a/Source/cmCommands.h +++ b/Source/cmCommands.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once class cmState; diff --git a/Source/cmCommonTargetGenerator.cxx b/Source/cmCommonTargetGenerator.cxx index 2b93daa..9495c06 100644 --- a/Source/cmCommonTargetGenerator.cxx +++ b/Source/cmCommonTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCommonTargetGenerator.h" #include diff --git a/Source/cmCommonTargetGenerator.h b/Source/cmCommonTargetGenerator.h index 3ec4c75..b97b947 100644 --- a/Source/cmCommonTargetGenerator.h +++ b/Source/cmCommonTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmComputeComponentGraph.cxx b/Source/cmComputeComponentGraph.cxx index 1efdb8d..7f4f209 100644 --- a/Source/cmComputeComponentGraph.cxx +++ b/Source/cmComputeComponentGraph.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmComputeComponentGraph.h" #include diff --git a/Source/cmComputeComponentGraph.h b/Source/cmComputeComponentGraph.h index db78ad7..1dfe74b 100644 --- a/Source/cmComputeComponentGraph.h +++ b/Source/cmComputeComponentGraph.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx index 9840e8e..15a3d0b 100644 --- a/Source/cmComputeLinkDepends.cxx +++ b/Source/cmComputeLinkDepends.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmComputeLinkDepends.h" #include diff --git a/Source/cmComputeLinkDepends.h b/Source/cmComputeLinkDepends.h index 9283d0c..a82db2b 100644 --- a/Source/cmComputeLinkDepends.h +++ b/Source/cmComputeLinkDepends.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index c411022..612555f 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmComputeLinkInformation.h" #include diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index d5badd3..54c7ba1 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmComputeTargetDepends.cxx b/Source/cmComputeTargetDepends.cxx index 8a4798d..02a8a3e 100644 --- a/Source/cmComputeTargetDepends.cxx +++ b/Source/cmComputeTargetDepends.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmComputeTargetDepends.h" #include diff --git a/Source/cmComputeTargetDepends.h b/Source/cmComputeTargetDepends.h index 0082500..cb5bd16 100644 --- a/Source/cmComputeTargetDepends.h +++ b/Source/cmComputeTargetDepends.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmConditionEvaluator.cxx b/Source/cmConditionEvaluator.cxx index ca385e8..1c0900c 100644 --- a/Source/cmConditionEvaluator.cxx +++ b/Source/cmConditionEvaluator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConditionEvaluator.h" #include diff --git a/Source/cmConditionEvaluator.h b/Source/cmConditionEvaluator.h index 20effee..0d9c78d 100644 --- a/Source/cmConditionEvaluator.h +++ b/Source/cmConditionEvaluator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmConfigure.cmake.h.in b/Source/cmConfigure.cmake.h.in index 23e4846..4b932f2 100644 --- a/Source/cmConfigure.cmake.h.in +++ b/Source/cmConfigure.cmake.h.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmsys/Configure.hxx" // IWYU pragma: export diff --git a/Source/cmConfigureFileCommand.cxx b/Source/cmConfigureFileCommand.cxx index f021034..42ef230 100644 --- a/Source/cmConfigureFileCommand.cxx +++ b/Source/cmConfigureFileCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigureFileCommand.h" #include diff --git a/Source/cmConfigureFileCommand.h b/Source/cmConfigureFileCommand.h index 009c145..6ba62c0 100644 --- a/Source/cmConfigureFileCommand.h +++ b/Source/cmConfigureFileCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmConfigureLog.cxx b/Source/cmConfigureLog.cxx index edbf49c..a7ada17 100644 --- a/Source/cmConfigureLog.cxx +++ b/Source/cmConfigureLog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigureLog.h" #include diff --git a/Source/cmConfigureLog.h b/Source/cmConfigureLog.h index 7edc3ed..ff9b4ee 100644 --- a/Source/cmConfigureLog.h +++ b/Source/cmConfigureLog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmConsoleBuf.cxx b/Source/cmConsoleBuf.cxx index 8ce9ebc..286c4c3 100644 --- a/Source/cmConsoleBuf.cxx +++ b/Source/cmConsoleBuf.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConsoleBuf.h" #if defined(_WIN32) && !defined(CMAKE_BOOTSTRAP) diff --git a/Source/cmConsoleBuf.h b/Source/cmConsoleBuf.h index 0a6d3b5..72e9da7 100644 --- a/Source/cmConsoleBuf.h +++ b/Source/cmConsoleBuf.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmConstStack.h b/Source/cmConstStack.h index f0bca32..d6059e7 100644 --- a/Source/cmConstStack.h +++ b/Source/cmConstStack.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmConstStack.tcc b/Source/cmConstStack.tcc index 81918ee..ee69c9c 100644 --- a/Source/cmConstStack.tcc +++ b/Source/cmConstStack.tcc @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Source/cmContinueCommand.cxx b/Source/cmContinueCommand.cxx index c6cecbe..347f1a2 100644 --- a/Source/cmContinueCommand.cxx +++ b/Source/cmContinueCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmContinueCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmContinueCommand.h b/Source/cmContinueCommand.h index 29a219f..122f9ee 100644 --- a/Source/cmContinueCommand.h +++ b/Source/cmContinueCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmConvertMSBuildXMLToJSON.py b/Source/cmConvertMSBuildXMLToJSON.py index 2be3781..b1e58bc 100644 --- a/Source/cmConvertMSBuildXMLToJSON.py +++ b/Source/cmConvertMSBuildXMLToJSON.py @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. import argparse import codecs diff --git a/Source/cmCoreTryCompile.cxx b/Source/cmCoreTryCompile.cxx index 7d785ea..d300ad4 100644 --- a/Source/cmCoreTryCompile.cxx +++ b/Source/cmCoreTryCompile.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCoreTryCompile.h" #include diff --git a/Source/cmCoreTryCompile.h b/Source/cmCoreTryCompile.h index 265b71d..41d712f 100644 --- a/Source/cmCoreTryCompile.h +++ b/Source/cmCoreTryCompile.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCreateTestSourceList.cxx b/Source/cmCreateTestSourceList.cxx index 3b69217..b1dba7f 100644 --- a/Source/cmCreateTestSourceList.cxx +++ b/Source/cmCreateTestSourceList.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCreateTestSourceList.h" #include diff --git a/Source/cmCreateTestSourceList.h b/Source/cmCreateTestSourceList.h index a7f11a6..6fcb007 100644 --- a/Source/cmCreateTestSourceList.h +++ b/Source/cmCreateTestSourceList.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCryptoHash.cxx b/Source/cmCryptoHash.cxx index 58ea676..5d1936f 100644 --- a/Source/cmCryptoHash.cxx +++ b/Source/cmCryptoHash.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCryptoHash.h" #include diff --git a/Source/cmCryptoHash.h b/Source/cmCryptoHash.h index 63aa1d3..600a50c 100644 --- a/Source/cmCryptoHash.h +++ b/Source/cmCryptoHash.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCurl.cxx b/Source/cmCurl.cxx index 8665d6a..1b8c765 100644 --- a/Source/cmCurl.cxx +++ b/Source/cmCurl.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCurl.h" #include diff --git a/Source/cmCurl.h b/Source/cmCurl.h index f07b271..933a173 100644 --- a/Source/cmCurl.h +++ b/Source/cmCurl.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index 460573a..5ec451e 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCustomCommand.h" #include diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h index 91d55bd..927747e 100644 --- a/Source/cmCustomCommand.h +++ b/Source/cmCustomCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCustomCommandGenerator.cxx b/Source/cmCustomCommandGenerator.cxx index d70ac39..4d34d66 100644 --- a/Source/cmCustomCommandGenerator.cxx +++ b/Source/cmCustomCommandGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCustomCommandGenerator.h" #include diff --git a/Source/cmCustomCommandGenerator.h b/Source/cmCustomCommandGenerator.h index ec64423..1bf12e9 100644 --- a/Source/cmCustomCommandGenerator.h +++ b/Source/cmCustomCommandGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCustomCommandLines.cxx b/Source/cmCustomCommandLines.cxx index 37ad75b..0c69e51 100644 --- a/Source/cmCustomCommandLines.cxx +++ b/Source/cmCustomCommandLines.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCustomCommandLines.h" cmCustomCommandLine cmMakeCommandLine( diff --git a/Source/cmCustomCommandLines.h b/Source/cmCustomCommandLines.h index ee8d080..40ca1dd 100644 --- a/Source/cmCustomCommandLines.h +++ b/Source/cmCustomCommandLines.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCustomCommandTypes.h b/Source/cmCustomCommandTypes.h index 324da9e..d1bfc38 100644 --- a/Source/cmCustomCommandTypes.h +++ b/Source/cmCustomCommandTypes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCxxModuleMapper.cxx b/Source/cmCxxModuleMapper.cxx index 4b2aec7..4b60832 100644 --- a/Source/cmCxxModuleMapper.cxx +++ b/Source/cmCxxModuleMapper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCxxModuleMapper.h" #include diff --git a/Source/cmCxxModuleMapper.h b/Source/cmCxxModuleMapper.h index 898396c..8309937 100644 --- a/Source/cmCxxModuleMapper.h +++ b/Source/cmCxxModuleMapper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmCxxModuleUsageEffects.cxx b/Source/cmCxxModuleUsageEffects.cxx index eea5245..aa1a13f 100644 --- a/Source/cmCxxModuleUsageEffects.cxx +++ b/Source/cmCxxModuleUsageEffects.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmCxxModuleUsageEffects.h" cmCxxModuleUsageEffects::cmCxxModuleUsageEffects( diff --git a/Source/cmCxxModuleUsageEffects.h b/Source/cmCxxModuleUsageEffects.h index a63919c..1c3933c 100644 --- a/Source/cmCxxModuleUsageEffects.h +++ b/Source/cmCxxModuleUsageEffects.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebugTools.h b/Source/cmDebugTools.h index a2fc610..bb1adaf 100644 --- a/Source/cmDebugTools.h +++ b/Source/cmDebugTools.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmDebuggerAdapter.cxx b/Source/cmDebuggerAdapter.cxx index e5171b6..7dc6e7f 100644 --- a/Source/cmDebuggerAdapter.cxx +++ b/Source/cmDebuggerAdapter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerAdapter.h b/Source/cmDebuggerAdapter.h index 3403b36..b459993 100644 --- a/Source/cmDebuggerAdapter.h +++ b/Source/cmDebuggerAdapter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerBreakpointManager.cxx b/Source/cmDebuggerBreakpointManager.cxx index bd932cc..dfd131c 100644 --- a/Source/cmDebuggerBreakpointManager.cxx +++ b/Source/cmDebuggerBreakpointManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerBreakpointManager.h" #include diff --git a/Source/cmDebuggerBreakpointManager.h b/Source/cmDebuggerBreakpointManager.h index 815262a..7040011 100644 --- a/Source/cmDebuggerBreakpointManager.h +++ b/Source/cmDebuggerBreakpointManager.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerExceptionManager.cxx b/Source/cmDebuggerExceptionManager.cxx index 9633add..a2744e1 100644 --- a/Source/cmDebuggerExceptionManager.cxx +++ b/Source/cmDebuggerExceptionManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerExceptionManager.h" #include diff --git a/Source/cmDebuggerExceptionManager.h b/Source/cmDebuggerExceptionManager.h index 4c044d7..2524b67 100644 --- a/Source/cmDebuggerExceptionManager.h +++ b/Source/cmDebuggerExceptionManager.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerPosixPipeConnection.cxx b/Source/cmDebuggerPosixPipeConnection.cxx index 0587450..ac5fd04 100644 --- a/Source/cmDebuggerPosixPipeConnection.cxx +++ b/Source/cmDebuggerPosixPipeConnection.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerPosixPipeConnection.h" #include diff --git a/Source/cmDebuggerPosixPipeConnection.h b/Source/cmDebuggerPosixPipeConnection.h index 42642fa..98e3f6f 100644 --- a/Source/cmDebuggerPosixPipeConnection.h +++ b/Source/cmDebuggerPosixPipeConnection.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerProtocol.cxx b/Source/cmDebuggerProtocol.cxx index 505de35..79c6e9e 100644 --- a/Source/cmDebuggerProtocol.cxx +++ b/Source/cmDebuggerProtocol.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerProtocol.h" diff --git a/Source/cmDebuggerProtocol.h b/Source/cmDebuggerProtocol.h index d4b1a96..4f457cc 100644 --- a/Source/cmDebuggerProtocol.h +++ b/Source/cmDebuggerProtocol.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerSourceBreakpoint.cxx b/Source/cmDebuggerSourceBreakpoint.cxx index d4665e6..875d76a 100644 --- a/Source/cmDebuggerSourceBreakpoint.cxx +++ b/Source/cmDebuggerSourceBreakpoint.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerSourceBreakpoint.h" namespace cmDebugger { diff --git a/Source/cmDebuggerSourceBreakpoint.h b/Source/cmDebuggerSourceBreakpoint.h index f6d6cac..0273eb5 100644 --- a/Source/cmDebuggerSourceBreakpoint.h +++ b/Source/cmDebuggerSourceBreakpoint.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerStackFrame.cxx b/Source/cmDebuggerStackFrame.cxx index 89cdbc6..10a0fb5 100644 --- a/Source/cmDebuggerStackFrame.cxx +++ b/Source/cmDebuggerStackFrame.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerStackFrame.h" #include diff --git a/Source/cmDebuggerStackFrame.h b/Source/cmDebuggerStackFrame.h index 2133bcd..2ac4fca 100644 --- a/Source/cmDebuggerStackFrame.h +++ b/Source/cmDebuggerStackFrame.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerThread.cxx b/Source/cmDebuggerThread.cxx index 047dd2d..2f682ed 100644 --- a/Source/cmDebuggerThread.cxx +++ b/Source/cmDebuggerThread.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerThread.h" diff --git a/Source/cmDebuggerThread.h b/Source/cmDebuggerThread.h index cf79514..56201b4 100644 --- a/Source/cmDebuggerThread.h +++ b/Source/cmDebuggerThread.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerThreadManager.cxx b/Source/cmDebuggerThreadManager.cxx index 030f098..951a101 100644 --- a/Source/cmDebuggerThreadManager.cxx +++ b/Source/cmDebuggerThreadManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerThreadManager.h" diff --git a/Source/cmDebuggerThreadManager.h b/Source/cmDebuggerThreadManager.h index 606adea..9ee494d 100644 --- a/Source/cmDebuggerThreadManager.h +++ b/Source/cmDebuggerThreadManager.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerVariables.cxx b/Source/cmDebuggerVariables.cxx index fd655de..0935210 100644 --- a/Source/cmDebuggerVariables.cxx +++ b/Source/cmDebuggerVariables.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerVariables.h" diff --git a/Source/cmDebuggerVariables.h b/Source/cmDebuggerVariables.h index abf436f..ba5270a 100644 --- a/Source/cmDebuggerVariables.h +++ b/Source/cmDebuggerVariables.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerVariablesHelper.cxx b/Source/cmDebuggerVariablesHelper.cxx index d46786c..b8bc328 100644 --- a/Source/cmDebuggerVariablesHelper.cxx +++ b/Source/cmDebuggerVariablesHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerVariablesHelper.h" diff --git a/Source/cmDebuggerVariablesHelper.h b/Source/cmDebuggerVariablesHelper.h index 9b11eaf..e39a857 100644 --- a/Source/cmDebuggerVariablesHelper.h +++ b/Source/cmDebuggerVariablesHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerVariablesManager.cxx b/Source/cmDebuggerVariablesManager.cxx index 9b9b476..8a51805 100644 --- a/Source/cmDebuggerVariablesManager.cxx +++ b/Source/cmDebuggerVariablesManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerVariablesManager.h" diff --git a/Source/cmDebuggerVariablesManager.h b/Source/cmDebuggerVariablesManager.h index 9a64f10..4c0a821 100644 --- a/Source/cmDebuggerVariablesManager.h +++ b/Source/cmDebuggerVariablesManager.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDebuggerWindowsPipeConnection.cxx b/Source/cmDebuggerWindowsPipeConnection.cxx index 5f6f848..1e8c35b 100644 --- a/Source/cmDebuggerWindowsPipeConnection.cxx +++ b/Source/cmDebuggerWindowsPipeConnection.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDebuggerWindowsPipeConnection.h" #include diff --git a/Source/cmDebuggerWindowsPipeConnection.h b/Source/cmDebuggerWindowsPipeConnection.h index 6a57435..5611255 100644 --- a/Source/cmDebuggerWindowsPipeConnection.h +++ b/Source/cmDebuggerWindowsPipeConnection.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDefinePropertyCommand.cxx b/Source/cmDefinePropertyCommand.cxx index 57ebae8..220a483 100644 --- a/Source/cmDefinePropertyCommand.cxx +++ b/Source/cmDefinePropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDefinePropertyCommand.h" #include diff --git a/Source/cmDefinePropertyCommand.h b/Source/cmDefinePropertyCommand.h index 3c478b3..21f70c8 100644 --- a/Source/cmDefinePropertyCommand.h +++ b/Source/cmDefinePropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDefinitions.cxx b/Source/cmDefinitions.cxx index 396d90d..c7cc47a 100644 --- a/Source/cmDefinitions.cxx +++ b/Source/cmDefinitions.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDefinitions.h" #include diff --git a/Source/cmDefinitions.h b/Source/cmDefinitions.h index a5b2a73..b423cac 100644 --- a/Source/cmDefinitions.h +++ b/Source/cmDefinitions.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDependencyProvider.h b/Source/cmDependencyProvider.h index a6670b4..173f3e9 100644 --- a/Source/cmDependencyProvider.h +++ b/Source/cmDependencyProvider.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDepends.cxx b/Source/cmDepends.cxx index a8a12d7..4d23399 100644 --- a/Source/cmDepends.cxx +++ b/Source/cmDepends.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDepends.h" #include diff --git a/Source/cmDepends.h b/Source/cmDepends.h index b748a54..6ae3179 100644 --- a/Source/cmDepends.h +++ b/Source/cmDepends.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index 6c1f5b7..f63b7ca 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDependsC.h" #include diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index 0f30a11..f47b233 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDependsCompiler.cxx b/Source/cmDependsCompiler.cxx index 9a0a02b..c3f6dce 100644 --- a/Source/cmDependsCompiler.cxx +++ b/Source/cmDependsCompiler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDependsCompiler.h" diff --git a/Source/cmDependsCompiler.h b/Source/cmDependsCompiler.h index f3893fe..73675df 100644 --- a/Source/cmDependsCompiler.h +++ b/Source/cmDependsCompiler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 553d029..be63469 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDependsFortran.h" #include diff --git a/Source/cmDependsFortran.h b/Source/cmDependsFortran.h index c4397f2..20b0adc 100644 --- a/Source/cmDependsFortran.h +++ b/Source/cmDependsFortran.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDependsJava.cxx b/Source/cmDependsJava.cxx index 454ba9f..e85fcf5 100644 --- a/Source/cmDependsJava.cxx +++ b/Source/cmDependsJava.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDependsJava.h" #include "cmSystemTools.h" diff --git a/Source/cmDependsJava.h b/Source/cmDependsJava.h index 0ecf832..9b9710b 100644 --- a/Source/cmDependsJava.h +++ b/Source/cmDependsJava.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDependsJavaParserHelper.cxx b/Source/cmDependsJavaParserHelper.cxx index b729bbb..a24bcd0 100644 --- a/Source/cmDependsJavaParserHelper.cxx +++ b/Source/cmDependsJavaParserHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDependsJavaParserHelper.h" #include diff --git a/Source/cmDependsJavaParserHelper.h b/Source/cmDependsJavaParserHelper.h index b5f19f7..f5afa08 100644 --- a/Source/cmDependsJavaParserHelper.h +++ b/Source/cmDependsJavaParserHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 0e10dad..2cd57b6 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDocumentation.h" #include diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index 2b28034..392e9a9 100644 --- a/Source/cmDocumentation.h +++ b/Source/cmDocumentation.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDocumentationEntry.h b/Source/cmDocumentationEntry.h index 22219f0..15d7030 100644 --- a/Source/cmDocumentationEntry.h +++ b/Source/cmDocumentationEntry.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDocumentationFormatter.cxx b/Source/cmDocumentationFormatter.cxx index bd9cc82..ea644d9 100644 --- a/Source/cmDocumentationFormatter.cxx +++ b/Source/cmDocumentationFormatter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDocumentationFormatter.h" #include // IWYU pragma: keep diff --git a/Source/cmDocumentationFormatter.h b/Source/cmDocumentationFormatter.h index 77606cf..22b9c47 100644 --- a/Source/cmDocumentationFormatter.h +++ b/Source/cmDocumentationFormatter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDocumentationSection.h b/Source/cmDocumentationSection.h index 672ec16..e1de7c1 100644 --- a/Source/cmDocumentationSection.h +++ b/Source/cmDocumentationSection.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmDuration.cxx b/Source/cmDuration.cxx index f281561..b017d0a 100644 --- a/Source/cmDuration.cxx +++ b/Source/cmDuration.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #define CMDURATION_CPP #include "cmDuration.h" diff --git a/Source/cmDuration.h b/Source/cmDuration.h index 884293d..c0268f9 100644 --- a/Source/cmDuration.h +++ b/Source/cmDuration.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmDynamicLoader.cxx b/Source/cmDynamicLoader.cxx index e198f89..c88c324 100644 --- a/Source/cmDynamicLoader.cxx +++ b/Source/cmDynamicLoader.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDynamicLoader.h" #include diff --git a/Source/cmDynamicLoader.h b/Source/cmDynamicLoader.h index 71c47d1..e2fcedc 100644 --- a/Source/cmDynamicLoader.h +++ b/Source/cmDynamicLoader.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ // .NAME cmDynamicLoader - class interface to system dynamic libraries // .SECTION Description // cmDynamicLoader provides a portable interface to loading dynamic diff --git a/Source/cmDyndepCollation.cxx b/Source/cmDyndepCollation.cxx index 800b395..98aaab2 100644 --- a/Source/cmDyndepCollation.cxx +++ b/Source/cmDyndepCollation.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmDyndepCollation.h" diff --git a/Source/cmDyndepCollation.h b/Source/cmDyndepCollation.h index b193467..7e6dfce 100644 --- a/Source/cmDyndepCollation.h +++ b/Source/cmDyndepCollation.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx index 17a48dc..372fb9b 100644 --- a/Source/cmELF.cxx +++ b/Source/cmELF.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmELF.h" #include diff --git a/Source/cmELF.h b/Source/cmELF.h index 5df6013..041b986 100644 --- a/Source/cmELF.h +++ b/Source/cmELF.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmEnableLanguageCommand.cxx b/Source/cmEnableLanguageCommand.cxx index 87fb077..96a845b 100644 --- a/Source/cmEnableLanguageCommand.cxx +++ b/Source/cmEnableLanguageCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmEnableLanguageCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmEnableLanguageCommand.h b/Source/cmEnableLanguageCommand.h index 730ba65..2da71c9 100644 --- a/Source/cmEnableLanguageCommand.h +++ b/Source/cmEnableLanguageCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmEnableTestingCommand.cxx b/Source/cmEnableTestingCommand.cxx index 89212c8..f499ed9 100644 --- a/Source/cmEnableTestingCommand.cxx +++ b/Source/cmEnableTestingCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmEnableTestingCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmEnableTestingCommand.h b/Source/cmEnableTestingCommand.h index a1374f3..c2bd688 100644 --- a/Source/cmEnableTestingCommand.h +++ b/Source/cmEnableTestingCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmEvaluatedTargetProperty.cxx b/Source/cmEvaluatedTargetProperty.cxx index 56c31a3..dab80ae 100644 --- a/Source/cmEvaluatedTargetProperty.cxx +++ b/Source/cmEvaluatedTargetProperty.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmEvaluatedTargetProperty.h" #include diff --git a/Source/cmEvaluatedTargetProperty.h b/Source/cmEvaluatedTargetProperty.h index e7b910d..f9cdada 100644 --- a/Source/cmEvaluatedTargetProperty.h +++ b/Source/cmEvaluatedTargetProperty.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmExecProgramCommand.cxx b/Source/cmExecProgramCommand.cxx index 5fe3d63..5f09bb6 100644 --- a/Source/cmExecProgramCommand.cxx +++ b/Source/cmExecProgramCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExecProgramCommand.h" #include diff --git a/Source/cmExecProgramCommand.h b/Source/cmExecProgramCommand.h index 111a56e..655662f 100644 --- a/Source/cmExecProgramCommand.h +++ b/Source/cmExecProgramCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExecuteProcessCommand.cxx b/Source/cmExecuteProcessCommand.cxx index 649b88f..4a4af16 100644 --- a/Source/cmExecuteProcessCommand.cxx +++ b/Source/cmExecuteProcessCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExecuteProcessCommand.h" #include diff --git a/Source/cmExecuteProcessCommand.h b/Source/cmExecuteProcessCommand.h index cc8cc38..ba0eb96 100644 --- a/Source/cmExecuteProcessCommand.h +++ b/Source/cmExecuteProcessCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExecutionStatus.h b/Source/cmExecutionStatus.h index be11dfa..7e28027 100644 --- a/Source/cmExecutionStatus.h +++ b/Source/cmExecutionStatus.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: keep diff --git a/Source/cmExpandedCommandArgument.cxx b/Source/cmExpandedCommandArgument.cxx index 07e7e4a..5456bf5 100644 --- a/Source/cmExpandedCommandArgument.cxx +++ b/Source/cmExpandedCommandArgument.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExpandedCommandArgument.h" #include diff --git a/Source/cmExpandedCommandArgument.h b/Source/cmExpandedCommandArgument.h index f1d4157..4dc98be 100644 --- a/Source/cmExpandedCommandArgument.h +++ b/Source/cmExpandedCommandArgument.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExperimental.cxx b/Source/cmExperimental.cxx index 45b71be..397cca7 100644 --- a/Source/cmExperimental.cxx +++ b/Source/cmExperimental.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExperimental.h" diff --git a/Source/cmExperimental.h b/Source/cmExperimental.h index 2616e99..f68fa87 100644 --- a/Source/cmExperimental.h +++ b/Source/cmExperimental.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmExportAndroidMKGenerator.cxx b/Source/cmExportAndroidMKGenerator.cxx index 4db5e3b..524fe58 100644 --- a/Source/cmExportAndroidMKGenerator.cxx +++ b/Source/cmExportAndroidMKGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportAndroidMKGenerator.h" #include diff --git a/Source/cmExportAndroidMKGenerator.h b/Source/cmExportAndroidMKGenerator.h index fb0f03b..dbf544b 100644 --- a/Source/cmExportAndroidMKGenerator.h +++ b/Source/cmExportAndroidMKGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportBuildAndroidMKGenerator.cxx b/Source/cmExportBuildAndroidMKGenerator.cxx index ad9ec04..c3cffc2 100644 --- a/Source/cmExportBuildAndroidMKGenerator.cxx +++ b/Source/cmExportBuildAndroidMKGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportBuildAndroidMKGenerator.h" #include diff --git a/Source/cmExportBuildAndroidMKGenerator.h b/Source/cmExportBuildAndroidMKGenerator.h index deb3893..0624f2b 100644 --- a/Source/cmExportBuildAndroidMKGenerator.h +++ b/Source/cmExportBuildAndroidMKGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportBuildCMakeConfigGenerator.cxx b/Source/cmExportBuildCMakeConfigGenerator.cxx index b8ed712..1e58d79 100644 --- a/Source/cmExportBuildCMakeConfigGenerator.cxx +++ b/Source/cmExportBuildCMakeConfigGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportBuildCMakeConfigGenerator.h" #include diff --git a/Source/cmExportBuildCMakeConfigGenerator.h b/Source/cmExportBuildCMakeConfigGenerator.h index 0648dc3..7c089b5 100644 --- a/Source/cmExportBuildCMakeConfigGenerator.h +++ b/Source/cmExportBuildCMakeConfigGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportBuildFileGenerator.cxx b/Source/cmExportBuildFileGenerator.cxx index 35f45b0..86e1b91 100644 --- a/Source/cmExportBuildFileGenerator.cxx +++ b/Source/cmExportBuildFileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportBuildFileGenerator.h" #include diff --git a/Source/cmExportBuildFileGenerator.h b/Source/cmExportBuildFileGenerator.h index dcfd757..6b30815 100644 --- a/Source/cmExportBuildFileGenerator.h +++ b/Source/cmExportBuildFileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportCMakeConfigGenerator.cxx b/Source/cmExportCMakeConfigGenerator.cxx index bb9de54..1bf43ca 100644 --- a/Source/cmExportCMakeConfigGenerator.cxx +++ b/Source/cmExportCMakeConfigGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportCMakeConfigGenerator.h" #include diff --git a/Source/cmExportCMakeConfigGenerator.h b/Source/cmExportCMakeConfigGenerator.h index 90f7aa7..f95676f 100644 --- a/Source/cmExportCMakeConfigGenerator.h +++ b/Source/cmExportCMakeConfigGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportCommand.cxx b/Source/cmExportCommand.cxx index 8e50c52..21b6d53 100644 --- a/Source/cmExportCommand.cxx +++ b/Source/cmExportCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportCommand.h" #include diff --git a/Source/cmExportCommand.h b/Source/cmExportCommand.h index 3f87bcf..555bca6 100644 --- a/Source/cmExportCommand.h +++ b/Source/cmExportCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index 7c1e290..583a256 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportFileGenerator.h" #include diff --git a/Source/cmExportFileGenerator.h b/Source/cmExportFileGenerator.h index 0daa016..740fbba 100644 --- a/Source/cmExportFileGenerator.h +++ b/Source/cmExportFileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportInstallAndroidMKGenerator.cxx b/Source/cmExportInstallAndroidMKGenerator.cxx index 3b52966..5ebde1f 100644 --- a/Source/cmExportInstallAndroidMKGenerator.cxx +++ b/Source/cmExportInstallAndroidMKGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportInstallAndroidMKGenerator.h" #include diff --git a/Source/cmExportInstallAndroidMKGenerator.h b/Source/cmExportInstallAndroidMKGenerator.h index 1e1a5a8..f587086 100644 --- a/Source/cmExportInstallAndroidMKGenerator.h +++ b/Source/cmExportInstallAndroidMKGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportInstallCMakeConfigGenerator.cxx b/Source/cmExportInstallCMakeConfigGenerator.cxx index 4b37bca..2154e69 100644 --- a/Source/cmExportInstallCMakeConfigGenerator.cxx +++ b/Source/cmExportInstallCMakeConfigGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportInstallCMakeConfigGenerator.h" #include diff --git a/Source/cmExportInstallCMakeConfigGenerator.h b/Source/cmExportInstallCMakeConfigGenerator.h index e56836b..4729c23 100644 --- a/Source/cmExportInstallCMakeConfigGenerator.h +++ b/Source/cmExportInstallCMakeConfigGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportInstallFileGenerator.cxx b/Source/cmExportInstallFileGenerator.cxx index 437da7a..af97921 100644 --- a/Source/cmExportInstallFileGenerator.cxx +++ b/Source/cmExportInstallFileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportInstallFileGenerator.h" #include diff --git a/Source/cmExportInstallFileGenerator.h b/Source/cmExportInstallFileGenerator.h index 8ef0eac..2df3264 100644 --- a/Source/cmExportInstallFileGenerator.h +++ b/Source/cmExportInstallFileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportInstallPackageInfoGenerator.cxx b/Source/cmExportInstallPackageInfoGenerator.cxx index b9b715e..930c593 100644 --- a/Source/cmExportInstallPackageInfoGenerator.cxx +++ b/Source/cmExportInstallPackageInfoGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportInstallPackageInfoGenerator.h" #include diff --git a/Source/cmExportInstallPackageInfoGenerator.h b/Source/cmExportInstallPackageInfoGenerator.h index 5861b05..d7f9c27 100644 --- a/Source/cmExportInstallPackageInfoGenerator.h +++ b/Source/cmExportInstallPackageInfoGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportPackageInfoGenerator.cxx b/Source/cmExportPackageInfoGenerator.cxx index 8616e10..bd8b8f8 100644 --- a/Source/cmExportPackageInfoGenerator.cxx +++ b/Source/cmExportPackageInfoGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportPackageInfoGenerator.h" #include diff --git a/Source/cmExportPackageInfoGenerator.h b/Source/cmExportPackageInfoGenerator.h index 5014252..4ca9dd3 100644 --- a/Source/cmExportPackageInfoGenerator.h +++ b/Source/cmExportPackageInfoGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportSet.cxx b/Source/cmExportSet.cxx index 69ed797..f5d93ba 100644 --- a/Source/cmExportSet.cxx +++ b/Source/cmExportSet.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportSet.h" // IWYU pragma: associated #include diff --git a/Source/cmExportSet.h b/Source/cmExportSet.h index 2a1d1ed..7196a20 100644 --- a/Source/cmExportSet.h +++ b/Source/cmExportSet.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExportTryCompileFileGenerator.cxx b/Source/cmExportTryCompileFileGenerator.cxx index ea55f47..e67df5f 100644 --- a/Source/cmExportTryCompileFileGenerator.cxx +++ b/Source/cmExportTryCompileFileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExportTryCompileFileGenerator.h" #include diff --git a/Source/cmExportTryCompileFileGenerator.h b/Source/cmExportTryCompileFileGenerator.h index 03994dc..2637dfe 100644 --- a/Source/cmExportTryCompileFileGenerator.h +++ b/Source/cmExportTryCompileFileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExprParserHelper.cxx b/Source/cmExprParserHelper.cxx index c0343c0..eabda19 100644 --- a/Source/cmExprParserHelper.cxx +++ b/Source/cmExprParserHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExprParserHelper.h" #include diff --git a/Source/cmExprParserHelper.h b/Source/cmExprParserHelper.h index 4dd7821..54ef7fd 100644 --- a/Source/cmExprParserHelper.h +++ b/Source/cmExprParserHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExternalMakefileProjectGenerator.cxx b/Source/cmExternalMakefileProjectGenerator.cxx index b7f4c31..6508705 100644 --- a/Source/cmExternalMakefileProjectGenerator.cxx +++ b/Source/cmExternalMakefileProjectGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExternalMakefileProjectGenerator.h" #include diff --git a/Source/cmExternalMakefileProjectGenerator.h b/Source/cmExternalMakefileProjectGenerator.h index 322d0c2..63f3a1e 100644 --- a/Source/cmExternalMakefileProjectGenerator.h +++ b/Source/cmExternalMakefileProjectGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 090b273..d6b24a1 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExtraCodeBlocksGenerator.h" #include diff --git a/Source/cmExtraCodeBlocksGenerator.h b/Source/cmExtraCodeBlocksGenerator.h index b7ddd78..38ffc79 100644 --- a/Source/cmExtraCodeBlocksGenerator.h +++ b/Source/cmExtraCodeBlocksGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExtraCodeLiteGenerator.cxx b/Source/cmExtraCodeLiteGenerator.cxx index bc6cf18..7538a75 100644 --- a/Source/cmExtraCodeLiteGenerator.cxx +++ b/Source/cmExtraCodeLiteGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExtraCodeLiteGenerator.h" #include diff --git a/Source/cmExtraCodeLiteGenerator.h b/Source/cmExtraCodeLiteGenerator.h index a3d1004..a1d8e90 100644 --- a/Source/cmExtraCodeLiteGenerator.h +++ b/Source/cmExtraCodeLiteGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExtraEclipseCDT4Generator.cxx b/Source/cmExtraEclipseCDT4Generator.cxx index 182b586..b2deea8 100644 --- a/Source/cmExtraEclipseCDT4Generator.cxx +++ b/Source/cmExtraEclipseCDT4Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExtraEclipseCDT4Generator.h" #include diff --git a/Source/cmExtraEclipseCDT4Generator.h b/Source/cmExtraEclipseCDT4Generator.h index 4bcf25a..d59a28a 100644 --- a/Source/cmExtraEclipseCDT4Generator.h +++ b/Source/cmExtraEclipseCDT4Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExtraKateGenerator.cxx b/Source/cmExtraKateGenerator.cxx index 05b450a..6bb3739 100644 --- a/Source/cmExtraKateGenerator.cxx +++ b/Source/cmExtraKateGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExtraKateGenerator.h" #include diff --git a/Source/cmExtraKateGenerator.h b/Source/cmExtraKateGenerator.h index 206c812..aa87007 100644 --- a/Source/cmExtraKateGenerator.h +++ b/Source/cmExtraKateGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmExtraSublimeTextGenerator.cxx b/Source/cmExtraSublimeTextGenerator.cxx index 8c3fcde..6bdbd9c 100644 --- a/Source/cmExtraSublimeTextGenerator.cxx +++ b/Source/cmExtraSublimeTextGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmExtraSublimeTextGenerator.h" #include diff --git a/Source/cmExtraSublimeTextGenerator.h b/Source/cmExtraSublimeTextGenerator.h index 61a854a..c429504 100644 --- a/Source/cmExtraSublimeTextGenerator.h +++ b/Source/cmExtraSublimeTextGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFLTKWrapUICommand.cxx b/Source/cmFLTKWrapUICommand.cxx index 6be932d..bfca378 100644 --- a/Source/cmFLTKWrapUICommand.cxx +++ b/Source/cmFLTKWrapUICommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFLTKWrapUICommand.h" #include diff --git a/Source/cmFLTKWrapUICommand.h b/Source/cmFLTKWrapUICommand.h index 7c1fc52..bcf2e52 100644 --- a/Source/cmFLTKWrapUICommand.h +++ b/Source/cmFLTKWrapUICommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFSPermissions.cxx b/Source/cmFSPermissions.cxx index 4015a51..9ab5510 100644 --- a/Source/cmFSPermissions.cxx +++ b/Source/cmFSPermissions.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFSPermissions.h" bool cmFSPermissions::stringToModeT(std::string const& arg, diff --git a/Source/cmFSPermissions.h b/Source/cmFSPermissions.h index 0a24784..7c28be3 100644 --- a/Source/cmFSPermissions.h +++ b/Source/cmFSPermissions.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPI.cxx b/Source/cmFileAPI.cxx index 1b2f365..46d610c 100644 --- a/Source/cmFileAPI.cxx +++ b/Source/cmFileAPI.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPI.h" #include diff --git a/Source/cmFileAPI.h b/Source/cmFileAPI.h index 057c481..79fc5ad 100644 --- a/Source/cmFileAPI.h +++ b/Source/cmFileAPI.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPICMakeFiles.cxx b/Source/cmFileAPICMakeFiles.cxx index acdf55d..68c13e8 100644 --- a/Source/cmFileAPICMakeFiles.cxx +++ b/Source/cmFileAPICMakeFiles.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPICMakeFiles.h" #include diff --git a/Source/cmFileAPICMakeFiles.h b/Source/cmFileAPICMakeFiles.h index 5b48ed3..06f6ff5 100644 --- a/Source/cmFileAPICMakeFiles.h +++ b/Source/cmFileAPICMakeFiles.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPICache.cxx b/Source/cmFileAPICache.cxx index ba38ef7..74b3aa5 100644 --- a/Source/cmFileAPICache.cxx +++ b/Source/cmFileAPICache.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPICache.h" #include diff --git a/Source/cmFileAPICache.h b/Source/cmFileAPICache.h index bd9feeb..dc179fa 100644 --- a/Source/cmFileAPICache.h +++ b/Source/cmFileAPICache.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPICodemodel.cxx b/Source/cmFileAPICodemodel.cxx index ae2e80f..5054021 100644 --- a/Source/cmFileAPICodemodel.cxx +++ b/Source/cmFileAPICodemodel.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPICodemodel.h" #include diff --git a/Source/cmFileAPICodemodel.h b/Source/cmFileAPICodemodel.h index 263f675..6a3d7b2 100644 --- a/Source/cmFileAPICodemodel.h +++ b/Source/cmFileAPICodemodel.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPICommand.cxx b/Source/cmFileAPICommand.cxx index f0b336c..ddc78f4 100644 --- a/Source/cmFileAPICommand.cxx +++ b/Source/cmFileAPICommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPICommand.h" #include diff --git a/Source/cmFileAPICommand.h b/Source/cmFileAPICommand.h index 28a4571..c9ed094 100644 --- a/Source/cmFileAPICommand.h +++ b/Source/cmFileAPICommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPIConfigureLog.cxx b/Source/cmFileAPIConfigureLog.cxx index ad0997c..8870d77 100644 --- a/Source/cmFileAPIConfigureLog.cxx +++ b/Source/cmFileAPIConfigureLog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPIConfigureLog.h" #include diff --git a/Source/cmFileAPIConfigureLog.h b/Source/cmFileAPIConfigureLog.h index deaa403..b290828 100644 --- a/Source/cmFileAPIConfigureLog.h +++ b/Source/cmFileAPIConfigureLog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileAPIToolchains.cxx b/Source/cmFileAPIToolchains.cxx index 2dc718c..516aefa 100644 --- a/Source/cmFileAPIToolchains.cxx +++ b/Source/cmFileAPIToolchains.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileAPIToolchains.h" #include diff --git a/Source/cmFileAPIToolchains.h b/Source/cmFileAPIToolchains.h index c188807..b6b48fb 100644 --- a/Source/cmFileAPIToolchains.h +++ b/Source/cmFileAPIToolchains.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 19afd4f..eebe674 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileCommand.h" #include diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h index ec9ee47..3e2968b 100644 --- a/Source/cmFileCommand.h +++ b/Source/cmFileCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileCommand_ReadMacho.cxx b/Source/cmFileCommand_ReadMacho.cxx index 870b3ca..9f247d5 100644 --- a/Source/cmFileCommand_ReadMacho.cxx +++ b/Source/cmFileCommand_ReadMacho.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileCommand_ReadMacho.h" #include "cmArgumentParser.h" diff --git a/Source/cmFileCommand_ReadMacho.h b/Source/cmFileCommand_ReadMacho.h index b79e15f..807f6c8 100644 --- a/Source/cmFileCommand_ReadMacho.h +++ b/Source/cmFileCommand_ReadMacho.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmFileCopier.cxx b/Source/cmFileCopier.cxx index 642aa93..c541bb9 100644 --- a/Source/cmFileCopier.cxx +++ b/Source/cmFileCopier.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileCopier.h" diff --git a/Source/cmFileCopier.h b/Source/cmFileCopier.h index 43c5416..673ae03 100644 --- a/Source/cmFileCopier.h +++ b/Source/cmFileCopier.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileInstaller.cxx b/Source/cmFileInstaller.cxx index 12e8ba2..6d88980 100644 --- a/Source/cmFileInstaller.cxx +++ b/Source/cmFileInstaller.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileInstaller.h" diff --git a/Source/cmFileInstaller.h b/Source/cmFileInstaller.h index f6e1331..dec135d 100644 --- a/Source/cmFileInstaller.h +++ b/Source/cmFileInstaller.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileLock.cxx b/Source/cmFileLock.cxx index f605299..1541bf9 100644 --- a/Source/cmFileLock.cxx +++ b/Source/cmFileLock.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileLock.h" #include diff --git a/Source/cmFileLock.h b/Source/cmFileLock.h index 8c5df38..73c023f 100644 --- a/Source/cmFileLock.h +++ b/Source/cmFileLock.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileLockPool.cxx b/Source/cmFileLockPool.cxx index fa88f83..a2f8c43 100644 --- a/Source/cmFileLockPool.cxx +++ b/Source/cmFileLockPool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileLockPool.h" #include diff --git a/Source/cmFileLockPool.h b/Source/cmFileLockPool.h index 24ecd55..7db0e02 100644 --- a/Source/cmFileLockPool.h +++ b/Source/cmFileLockPool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileLockResult.cxx b/Source/cmFileLockResult.cxx index a4d43f7..decb383 100644 --- a/Source/cmFileLockResult.cxx +++ b/Source/cmFileLockResult.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileLockResult.h" #include diff --git a/Source/cmFileLockResult.h b/Source/cmFileLockResult.h index e252de7..d30e0a6 100644 --- a/Source/cmFileLockResult.h +++ b/Source/cmFileLockResult.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileLockUnix.cxx b/Source/cmFileLockUnix.cxx index 0d330a9..301342d 100644 --- a/Source/cmFileLockUnix.cxx +++ b/Source/cmFileLockUnix.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // errno #include // SEEK_SET diff --git a/Source/cmFileLockWin32.cxx b/Source/cmFileLockWin32.cxx index 62dc124..436a5c0 100644 --- a/Source/cmFileLockWin32.cxx +++ b/Source/cmFileLockWin32.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Source/cmFilePathChecksum.cxx b/Source/cmFilePathChecksum.cxx index 6b52230..0c0c9f9 100644 --- a/Source/cmFilePathChecksum.cxx +++ b/Source/cmFilePathChecksum.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFilePathChecksum.h" #include diff --git a/Source/cmFilePathChecksum.h b/Source/cmFilePathChecksum.h index 09a99a6..e7f2bf2 100644 --- a/Source/cmFilePathChecksum.h +++ b/Source/cmFilePathChecksum.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileSet.cxx b/Source/cmFileSet.cxx index 58b7cbd..066a494 100644 --- a/Source/cmFileSet.cxx +++ b/Source/cmFileSet.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileSet.h" #include diff --git a/Source/cmFileSet.h b/Source/cmFileSet.h index c590c0d..1175be8 100644 --- a/Source/cmFileSet.h +++ b/Source/cmFileSet.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmFileTime.cxx b/Source/cmFileTime.cxx index 3d103d3..04a0203 100644 --- a/Source/cmFileTime.cxx +++ b/Source/cmFileTime.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileTime.h" #include diff --git a/Source/cmFileTime.h b/Source/cmFileTime.h index a08f24a..52ecf50 100644 --- a/Source/cmFileTime.h +++ b/Source/cmFileTime.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileTimeCache.cxx b/Source/cmFileTimeCache.cxx index 0d1dae5..235880b 100644 --- a/Source/cmFileTimeCache.cxx +++ b/Source/cmFileTimeCache.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileTimeCache.h" #include diff --git a/Source/cmFileTimeCache.h b/Source/cmFileTimeCache.h index 057fa2c..d6204ee 100644 --- a/Source/cmFileTimeCache.h +++ b/Source/cmFileTimeCache.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFileTimes.cxx b/Source/cmFileTimes.cxx index 6835e46..f8a9446 100644 --- a/Source/cmFileTimes.cxx +++ b/Source/cmFileTimes.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFileTimes.h" #include diff --git a/Source/cmFileTimes.h b/Source/cmFileTimes.h index 58d24bc..d3ad3f6 100644 --- a/Source/cmFileTimes.h +++ b/Source/cmFileTimes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindBase.cxx b/Source/cmFindBase.cxx index 8733e3c..a7e00fd 100644 --- a/Source/cmFindBase.cxx +++ b/Source/cmFindBase.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindBase.h" #include diff --git a/Source/cmFindBase.h b/Source/cmFindBase.h index 59b7485..8655b22 100644 --- a/Source/cmFindBase.h +++ b/Source/cmFindBase.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindCommon.cxx b/Source/cmFindCommon.cxx index 91a0a54..b7783b6 100644 --- a/Source/cmFindCommon.cxx +++ b/Source/cmFindCommon.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindCommon.h" #include diff --git a/Source/cmFindCommon.h b/Source/cmFindCommon.h index f5ba991..cf1a7aa 100644 --- a/Source/cmFindCommon.h +++ b/Source/cmFindCommon.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindFileCommand.cxx b/Source/cmFindFileCommand.cxx index a88c1b1..f2c6b31 100644 --- a/Source/cmFindFileCommand.cxx +++ b/Source/cmFindFileCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindFileCommand.h" #include "cmStateTypes.h" diff --git a/Source/cmFindFileCommand.h b/Source/cmFindFileCommand.h index 368a7c9..925619a 100644 --- a/Source/cmFindFileCommand.h +++ b/Source/cmFindFileCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindLibraryCommand.cxx b/Source/cmFindLibraryCommand.cxx index 200193c..83bc09f 100644 --- a/Source/cmFindLibraryCommand.cxx +++ b/Source/cmFindLibraryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindLibraryCommand.h" #include diff --git a/Source/cmFindLibraryCommand.h b/Source/cmFindLibraryCommand.h index 057d0c0..7a81daa 100644 --- a/Source/cmFindLibraryCommand.h +++ b/Source/cmFindLibraryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx index 7720485..7dbf668 100644 --- a/Source/cmFindPackageCommand.cxx +++ b/Source/cmFindPackageCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindPackageCommand.h" #include diff --git a/Source/cmFindPackageCommand.h b/Source/cmFindPackageCommand.h index 75a4243..096fc07 100644 --- a/Source/cmFindPackageCommand.h +++ b/Source/cmFindPackageCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindPackageStack.cxx b/Source/cmFindPackageStack.cxx index 1aeb2a7..0803049 100644 --- a/Source/cmFindPackageStack.cxx +++ b/Source/cmFindPackageStack.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #define cmFindPackageStack_cxx #include "cmFindPackageStack.h" diff --git a/Source/cmFindPackageStack.h b/Source/cmFindPackageStack.h index 2062fbc..e281b51 100644 --- a/Source/cmFindPackageStack.h +++ b/Source/cmFindPackageStack.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx index b6a7834..2169a06 100644 --- a/Source/cmFindPathCommand.cxx +++ b/Source/cmFindPathCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindPathCommand.h" #include diff --git a/Source/cmFindPathCommand.h b/Source/cmFindPathCommand.h index a7746f6..3870a09 100644 --- a/Source/cmFindPathCommand.h +++ b/Source/cmFindPathCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx index af9e089..2ea9534 100644 --- a/Source/cmFindProgramCommand.cxx +++ b/Source/cmFindProgramCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFindProgramCommand.h" #include diff --git a/Source/cmFindProgramCommand.h b/Source/cmFindProgramCommand.h index 161a680..0255b4de 100644 --- a/Source/cmFindProgramCommand.h +++ b/Source/cmFindProgramCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmForEachCommand.cxx b/Source/cmForEachCommand.cxx index 18fc45c..83a6abf 100644 --- a/Source/cmForEachCommand.cxx +++ b/Source/cmForEachCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmForEachCommand.h" #include diff --git a/Source/cmForEachCommand.h b/Source/cmForEachCommand.h index 6476fea..275e052 100644 --- a/Source/cmForEachCommand.h +++ b/Source/cmForEachCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFortranParser.h b/Source/cmFortranParser.h index b4d8f81..a835e19 100644 --- a/Source/cmFortranParser.h +++ b/Source/cmFortranParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if !defined(cmFortranLexer_cxx) && !defined(cmFortranParser_cxx) diff --git a/Source/cmFortranParserImpl.cxx b/Source/cmFortranParserImpl.cxx index ed0f5c3..4c0d5dd 100644 --- a/Source/cmFortranParserImpl.cxx +++ b/Source/cmFortranParserImpl.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Source/cmFunctionBlocker.cxx b/Source/cmFunctionBlocker.cxx index 2039c6b..7fc6ffb 100644 --- a/Source/cmFunctionBlocker.cxx +++ b/Source/cmFunctionBlocker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFunctionBlocker.h" #include diff --git a/Source/cmFunctionBlocker.h b/Source/cmFunctionBlocker.h index 3e096f2..0d2166d 100644 --- a/Source/cmFunctionBlocker.h +++ b/Source/cmFunctionBlocker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmFunctionCommand.cxx b/Source/cmFunctionCommand.cxx index c59934d..8ea6c4d 100644 --- a/Source/cmFunctionCommand.cxx +++ b/Source/cmFunctionCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmFunctionCommand.h" #include diff --git a/Source/cmFunctionCommand.h b/Source/cmFunctionCommand.h index 07ff4f7..154912c 100644 --- a/Source/cmFunctionCommand.h +++ b/Source/cmFunctionCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGccDepfileLexerHelper.cxx b/Source/cmGccDepfileLexerHelper.cxx index b003dd3..56f0950 100644 --- a/Source/cmGccDepfileLexerHelper.cxx +++ b/Source/cmGccDepfileLexerHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGccDepfileLexerHelper.h" #include diff --git a/Source/cmGccDepfileLexerHelper.h b/Source/cmGccDepfileLexerHelper.h index de5201b..09c5b62 100644 --- a/Source/cmGccDepfileLexerHelper.h +++ b/Source/cmGccDepfileLexerHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGccDepfileReader.cxx b/Source/cmGccDepfileReader.cxx index 999ae3d..e5b86ad 100644 --- a/Source/cmGccDepfileReader.cxx +++ b/Source/cmGccDepfileReader.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGccDepfileReader.h" #include diff --git a/Source/cmGccDepfileReader.h b/Source/cmGccDepfileReader.h index e87e97c..968ebc7 100644 --- a/Source/cmGccDepfileReader.h +++ b/Source/cmGccDepfileReader.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGccDepfileReaderTypes.h b/Source/cmGccDepfileReaderTypes.h index 246e355..c531777 100644 --- a/Source/cmGccDepfileReaderTypes.h +++ b/Source/cmGccDepfileReaderTypes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGeneratedFileStream.cxx b/Source/cmGeneratedFileStream.cxx index a1782bf..161dcbc 100644 --- a/Source/cmGeneratedFileStream.cxx +++ b/Source/cmGeneratedFileStream.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratedFileStream.h" #include diff --git a/Source/cmGeneratedFileStream.h b/Source/cmGeneratedFileStream.h index c832bc3..b30fc64 100644 --- a/Source/cmGeneratedFileStream.h +++ b/Source/cmGeneratedFileStream.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx index 8c52d2b..873ed7e 100644 --- a/Source/cmGeneratorExpression.cxx +++ b/Source/cmGeneratorExpression.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpression.h" #include diff --git a/Source/cmGeneratorExpression.h b/Source/cmGeneratorExpression.h index da7e1c8..293459c 100644 --- a/Source/cmGeneratorExpression.h +++ b/Source/cmGeneratorExpression.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpressionContext.cxx b/Source/cmGeneratorExpressionContext.cxx index 4840146..a934717 100644 --- a/Source/cmGeneratorExpressionContext.cxx +++ b/Source/cmGeneratorExpressionContext.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionContext.h" #include diff --git a/Source/cmGeneratorExpressionContext.h b/Source/cmGeneratorExpressionContext.h index d517a5e..d013477 100644 --- a/Source/cmGeneratorExpressionContext.h +++ b/Source/cmGeneratorExpressionContext.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGeneratorExpressionDAGChecker.cxx b/Source/cmGeneratorExpressionDAGChecker.cxx index 6457dc2..3e8e885 100644 --- a/Source/cmGeneratorExpressionDAGChecker.cxx +++ b/Source/cmGeneratorExpressionDAGChecker.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionDAGChecker.h" #include diff --git a/Source/cmGeneratorExpressionDAGChecker.h b/Source/cmGeneratorExpressionDAGChecker.h index 7b2d411..1601afb 100644 --- a/Source/cmGeneratorExpressionDAGChecker.h +++ b/Source/cmGeneratorExpressionDAGChecker.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpressionEvaluationFile.cxx b/Source/cmGeneratorExpressionEvaluationFile.cxx index fcbdaf1..4664dea 100644 --- a/Source/cmGeneratorExpressionEvaluationFile.cxx +++ b/Source/cmGeneratorExpressionEvaluationFile.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionEvaluationFile.h" #include diff --git a/Source/cmGeneratorExpressionEvaluationFile.h b/Source/cmGeneratorExpressionEvaluationFile.h index cfebed6..5826636 100644 --- a/Source/cmGeneratorExpressionEvaluationFile.h +++ b/Source/cmGeneratorExpressionEvaluationFile.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpressionEvaluator.cxx b/Source/cmGeneratorExpressionEvaluator.cxx index 3005b22..47c455f 100644 --- a/Source/cmGeneratorExpressionEvaluator.cxx +++ b/Source/cmGeneratorExpressionEvaluator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionEvaluator.h" #include diff --git a/Source/cmGeneratorExpressionEvaluator.h b/Source/cmGeneratorExpressionEvaluator.h index edf231b..d985e63 100644 --- a/Source/cmGeneratorExpressionEvaluator.h +++ b/Source/cmGeneratorExpressionEvaluator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpressionLexer.cxx b/Source/cmGeneratorExpressionLexer.cxx index 4b7dbe3..0332568 100644 --- a/Source/cmGeneratorExpressionLexer.cxx +++ b/Source/cmGeneratorExpressionLexer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionLexer.h" cmGeneratorExpressionLexer::cmGeneratorExpressionLexer() = default; diff --git a/Source/cmGeneratorExpressionLexer.h b/Source/cmGeneratorExpressionLexer.h index c96cdb3..2d988bb 100644 --- a/Source/cmGeneratorExpressionLexer.h +++ b/Source/cmGeneratorExpressionLexer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx index abc1fb3..31923d6 100644 --- a/Source/cmGeneratorExpressionNode.cxx +++ b/Source/cmGeneratorExpressionNode.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionNode.h" #include diff --git a/Source/cmGeneratorExpressionNode.h b/Source/cmGeneratorExpressionNode.h index 1e2afc5..865f71c 100644 --- a/Source/cmGeneratorExpressionNode.h +++ b/Source/cmGeneratorExpressionNode.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorExpressionParser.cxx b/Source/cmGeneratorExpressionParser.cxx index 968a3da..c47de3b 100644 --- a/Source/cmGeneratorExpressionParser.cxx +++ b/Source/cmGeneratorExpressionParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorExpressionParser.h" #include diff --git a/Source/cmGeneratorExpressionParser.h b/Source/cmGeneratorExpressionParser.h index 4c9a2f5..db95f89 100644 --- a/Source/cmGeneratorExpressionParser.h +++ b/Source/cmGeneratorExpressionParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorOptions.h b/Source/cmGeneratorOptions.h index 0e17f56..0b2fb3f 100644 --- a/Source/cmGeneratorOptions.h +++ b/Source/cmGeneratorOptions.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 25ce031..99ee0ec 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGeneratorTarget.h" #include diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 93dc0a8..083de54 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGeneratorTarget_CompatibleInterface.cxx b/Source/cmGeneratorTarget_CompatibleInterface.cxx index a9f79f2..bf9970b 100644 --- a/Source/cmGeneratorTarget_CompatibleInterface.cxx +++ b/Source/cmGeneratorTarget_CompatibleInterface.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_IncludeDirectories.cxx b/Source/cmGeneratorTarget_IncludeDirectories.cxx index 9ca5ed0..9f4c09a 100644 --- a/Source/cmGeneratorTarget_IncludeDirectories.cxx +++ b/Source/cmGeneratorTarget_IncludeDirectories.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_Link.cxx b/Source/cmGeneratorTarget_Link.cxx index 1111393..f0e527c 100644 --- a/Source/cmGeneratorTarget_Link.cxx +++ b/Source/cmGeneratorTarget_Link.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_LinkDirectories.cxx b/Source/cmGeneratorTarget_LinkDirectories.cxx index 90c8d7e..4846d6f 100644 --- a/Source/cmGeneratorTarget_LinkDirectories.cxx +++ b/Source/cmGeneratorTarget_LinkDirectories.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_Options.cxx b/Source/cmGeneratorTarget_Options.cxx index 5bd4902..63baa1d 100644 --- a/Source/cmGeneratorTarget_Options.cxx +++ b/Source/cmGeneratorTarget_Options.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_Sources.cxx b/Source/cmGeneratorTarget_Sources.cxx index b699761..fa27998 100644 --- a/Source/cmGeneratorTarget_Sources.cxx +++ b/Source/cmGeneratorTarget_Sources.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_TargetPropertyEntry.cxx b/Source/cmGeneratorTarget_TargetPropertyEntry.cxx index e43de41..90a3ca8 100644 --- a/Source/cmGeneratorTarget_TargetPropertyEntry.cxx +++ b/Source/cmGeneratorTarget_TargetPropertyEntry.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGeneratorTarget_TransitiveProperty.cxx b/Source/cmGeneratorTarget_TransitiveProperty.cxx index 855ddea..3cc2fe4 100644 --- a/Source/cmGeneratorTarget_TransitiveProperty.cxx +++ b/Source/cmGeneratorTarget_TransitiveProperty.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* clang-format off */ #include "cmGeneratorTarget.h" /* clang-format on */ diff --git a/Source/cmGetCMakePropertyCommand.cxx b/Source/cmGetCMakePropertyCommand.cxx index 6b9a7dc..7497afa 100644 --- a/Source/cmGetCMakePropertyCommand.cxx +++ b/Source/cmGetCMakePropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetCMakePropertyCommand.h" #include diff --git a/Source/cmGetCMakePropertyCommand.h b/Source/cmGetCMakePropertyCommand.h index 3a2e702..6832e92 100644 --- a/Source/cmGetCMakePropertyCommand.h +++ b/Source/cmGetCMakePropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGetDirectoryPropertyCommand.cxx b/Source/cmGetDirectoryPropertyCommand.cxx index 122eb16..0637149 100644 --- a/Source/cmGetDirectoryPropertyCommand.cxx +++ b/Source/cmGetDirectoryPropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetDirectoryPropertyCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmGetDirectoryPropertyCommand.h b/Source/cmGetDirectoryPropertyCommand.h index 4b0883c..186cc82 100644 --- a/Source/cmGetDirectoryPropertyCommand.h +++ b/Source/cmGetDirectoryPropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGetFilenameComponentCommand.cxx b/Source/cmGetFilenameComponentCommand.cxx index febece0..1543ca6 100644 --- a/Source/cmGetFilenameComponentCommand.cxx +++ b/Source/cmGetFilenameComponentCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetFilenameComponentCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmGetFilenameComponentCommand.h b/Source/cmGetFilenameComponentCommand.h index 4e1addf..7c2bc25 100644 --- a/Source/cmGetFilenameComponentCommand.h +++ b/Source/cmGetFilenameComponentCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGetPipes.cxx b/Source/cmGetPipes.cxx index a5b6469..66a0519 100644 --- a/Source/cmGetPipes.cxx +++ b/Source/cmGetPipes.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetPipes.h" #include diff --git a/Source/cmGetPipes.h b/Source/cmGetPipes.h index 6b1b495..01961b0 100644 --- a/Source/cmGetPipes.h +++ b/Source/cmGetPipes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once int cmGetPipes(int* fds); diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx index fea9c67..c75e331 100644 --- a/Source/cmGetPropertyCommand.cxx +++ b/Source/cmGetPropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetPropertyCommand.h" #include diff --git a/Source/cmGetPropertyCommand.h b/Source/cmGetPropertyCommand.h index fac3202..093a231 100644 --- a/Source/cmGetPropertyCommand.h +++ b/Source/cmGetPropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGetSourceFilePropertyCommand.cxx b/Source/cmGetSourceFilePropertyCommand.cxx index 783f2c7..fea0bb1 100644 --- a/Source/cmGetSourceFilePropertyCommand.cxx +++ b/Source/cmGetSourceFilePropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetSourceFilePropertyCommand.h" #include diff --git a/Source/cmGetSourceFilePropertyCommand.h b/Source/cmGetSourceFilePropertyCommand.h index 4f8eab2..2266e83 100644 --- a/Source/cmGetSourceFilePropertyCommand.h +++ b/Source/cmGetSourceFilePropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGetTargetPropertyCommand.cxx b/Source/cmGetTargetPropertyCommand.cxx index a244978..9b59bf3 100644 --- a/Source/cmGetTargetPropertyCommand.cxx +++ b/Source/cmGetTargetPropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetTargetPropertyCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmGetTargetPropertyCommand.h b/Source/cmGetTargetPropertyCommand.h index 0fbd23d..76e8347 100644 --- a/Source/cmGetTargetPropertyCommand.h +++ b/Source/cmGetTargetPropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGetTestPropertyCommand.cxx b/Source/cmGetTestPropertyCommand.cxx index 103471b..1f987b9 100644 --- a/Source/cmGetTestPropertyCommand.cxx +++ b/Source/cmGetTestPropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGetTestPropertyCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmGetTestPropertyCommand.h b/Source/cmGetTestPropertyCommand.h index f1d6010..0e0da27 100644 --- a/Source/cmGetTestPropertyCommand.h +++ b/Source/cmGetTestPropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGhsMultiGpj.cxx b/Source/cmGhsMultiGpj.cxx index d2f619d..60b5565 100644 --- a/Source/cmGhsMultiGpj.cxx +++ b/Source/cmGhsMultiGpj.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGhsMultiGpj.h" #include diff --git a/Source/cmGhsMultiGpj.h b/Source/cmGhsMultiGpj.h index b5c8a27..d82200a 100644 --- a/Source/cmGhsMultiGpj.h +++ b/Source/cmGhsMultiGpj.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGhsMultiTargetGenerator.cxx b/Source/cmGhsMultiTargetGenerator.cxx index dd41626..2557cf7 100644 --- a/Source/cmGhsMultiTargetGenerator.cxx +++ b/Source/cmGhsMultiTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGhsMultiTargetGenerator.h" #include diff --git a/Source/cmGhsMultiTargetGenerator.h b/Source/cmGhsMultiTargetGenerator.h index 569a56e..91ca105 100644 --- a/Source/cmGhsMultiTargetGenerator.h +++ b/Source/cmGhsMultiTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobCacheEntry.h b/Source/cmGlobCacheEntry.h index f282c93..566d1b3 100644 --- a/Source/cmGlobCacheEntry.h +++ b/Source/cmGlobCacheEntry.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobVerificationManager.cxx b/Source/cmGlobVerificationManager.cxx index 0be91e9..7798fc9 100644 --- a/Source/cmGlobVerificationManager.cxx +++ b/Source/cmGlobVerificationManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobVerificationManager.h" #include diff --git a/Source/cmGlobVerificationManager.h b/Source/cmGlobVerificationManager.h index f1e4f67..0a6f25c 100644 --- a/Source/cmGlobVerificationManager.h +++ b/Source/cmGlobVerificationManager.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalBorlandMakefileGenerator.cxx b/Source/cmGlobalBorlandMakefileGenerator.cxx index a872ba4..31e8df2 100644 --- a/Source/cmGlobalBorlandMakefileGenerator.cxx +++ b/Source/cmGlobalBorlandMakefileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalBorlandMakefileGenerator.h" #include diff --git a/Source/cmGlobalBorlandMakefileGenerator.h b/Source/cmGlobalBorlandMakefileGenerator.h index 4a7f085..7fff979 100644 --- a/Source/cmGlobalBorlandMakefileGenerator.h +++ b/Source/cmGlobalBorlandMakefileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalCommonGenerator.cxx b/Source/cmGlobalCommonGenerator.cxx index 0c9500c..da882c0 100644 --- a/Source/cmGlobalCommonGenerator.cxx +++ b/Source/cmGlobalCommonGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalCommonGenerator.h" #include diff --git a/Source/cmGlobalCommonGenerator.h b/Source/cmGlobalCommonGenerator.h index 5f3bded..479c109 100644 --- a/Source/cmGlobalCommonGenerator.h +++ b/Source/cmGlobalCommonGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 8f2a74f..6a0f31b 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalGenerator.h" #include diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 49a27eb..b7ea6a9 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalGeneratorFactory.h b/Source/cmGlobalGeneratorFactory.h index 9557677..cd24420 100644 --- a/Source/cmGlobalGeneratorFactory.h +++ b/Source/cmGlobalGeneratorFactory.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalGhsMultiGenerator.cxx b/Source/cmGlobalGhsMultiGenerator.cxx index c77ac76..1b52a11 100644 --- a/Source/cmGlobalGhsMultiGenerator.cxx +++ b/Source/cmGlobalGhsMultiGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalGhsMultiGenerator.h" #include diff --git a/Source/cmGlobalGhsMultiGenerator.h b/Source/cmGlobalGhsMultiGenerator.h index 8fdacf5..c0bc7be 100644 --- a/Source/cmGlobalGhsMultiGenerator.h +++ b/Source/cmGlobalGhsMultiGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalJOMMakefileGenerator.cxx b/Source/cmGlobalJOMMakefileGenerator.cxx index 8d40f05..a918ee0 100644 --- a/Source/cmGlobalJOMMakefileGenerator.cxx +++ b/Source/cmGlobalJOMMakefileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalJOMMakefileGenerator.h" #include diff --git a/Source/cmGlobalJOMMakefileGenerator.h b/Source/cmGlobalJOMMakefileGenerator.h index 340af25..b89c22f 100644 --- a/Source/cmGlobalJOMMakefileGenerator.h +++ b/Source/cmGlobalJOMMakefileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalMSYSMakefileGenerator.cxx b/Source/cmGlobalMSYSMakefileGenerator.cxx index 26b30fd..a7641f7 100644 --- a/Source/cmGlobalMSYSMakefileGenerator.cxx +++ b/Source/cmGlobalMSYSMakefileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalMSYSMakefileGenerator.h" #include diff --git a/Source/cmGlobalMSYSMakefileGenerator.h b/Source/cmGlobalMSYSMakefileGenerator.h index ee9a4ee..5529092 100644 --- a/Source/cmGlobalMSYSMakefileGenerator.h +++ b/Source/cmGlobalMSYSMakefileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalMinGWMakefileGenerator.cxx b/Source/cmGlobalMinGWMakefileGenerator.cxx index a0a52d3..e6687ce 100644 --- a/Source/cmGlobalMinGWMakefileGenerator.cxx +++ b/Source/cmGlobalMinGWMakefileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalMinGWMakefileGenerator.h" #include "cmMakefile.h" diff --git a/Source/cmGlobalMinGWMakefileGenerator.h b/Source/cmGlobalMinGWMakefileGenerator.h index 7dd968b..edfceb5 100644 --- a/Source/cmGlobalMinGWMakefileGenerator.h +++ b/Source/cmGlobalMinGWMakefileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalNMakeMakefileGenerator.cxx b/Source/cmGlobalNMakeMakefileGenerator.cxx index cffc9ec..8209709 100644 --- a/Source/cmGlobalNMakeMakefileGenerator.cxx +++ b/Source/cmGlobalNMakeMakefileGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalNMakeMakefileGenerator.h" #include diff --git a/Source/cmGlobalNMakeMakefileGenerator.h b/Source/cmGlobalNMakeMakefileGenerator.h index 2755678..0589f2b 100644 --- a/Source/cmGlobalNMakeMakefileGenerator.h +++ b/Source/cmGlobalNMakeMakefileGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx index 6b57669..ce96c26 100644 --- a/Source/cmGlobalNinjaGenerator.cxx +++ b/Source/cmGlobalNinjaGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalNinjaGenerator.h" #include diff --git a/Source/cmGlobalNinjaGenerator.h b/Source/cmGlobalNinjaGenerator.h index 66e3bbd..353d68b 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index 01b23f8..db23fa6 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalUnixMakefileGenerator3.h" #include diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index e92bf1a..75a4fdd 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx index 8cd72e3..688fbd7 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio10Generator.h" #include diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h index f15da8f..5248b4d 100644 --- a/Source/cmGlobalVisualStudio10Generator.h +++ b/Source/cmGlobalVisualStudio10Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalVisualStudio11Generator.cxx b/Source/cmGlobalVisualStudio11Generator.cxx index bfb33d3..b961ae5 100644 --- a/Source/cmGlobalVisualStudio11Generator.cxx +++ b/Source/cmGlobalVisualStudio11Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio11Generator.h" #include diff --git a/Source/cmGlobalVisualStudio11Generator.h b/Source/cmGlobalVisualStudio11Generator.h index 6acf42a..4b00fa2 100644 --- a/Source/cmGlobalVisualStudio11Generator.h +++ b/Source/cmGlobalVisualStudio11Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalVisualStudio12Generator.cxx b/Source/cmGlobalVisualStudio12Generator.cxx index d8276bd..8b9383c 100644 --- a/Source/cmGlobalVisualStudio12Generator.cxx +++ b/Source/cmGlobalVisualStudio12Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio12Generator.h" #include diff --git a/Source/cmGlobalVisualStudio12Generator.h b/Source/cmGlobalVisualStudio12Generator.h index 42d5872..a7f6bb5 100644 --- a/Source/cmGlobalVisualStudio12Generator.h +++ b/Source/cmGlobalVisualStudio12Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalVisualStudio14Generator.cxx b/Source/cmGlobalVisualStudio14Generator.cxx index df41c75..7532ea0 100644 --- a/Source/cmGlobalVisualStudio14Generator.cxx +++ b/Source/cmGlobalVisualStudio14Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio14Generator.h" #include diff --git a/Source/cmGlobalVisualStudio14Generator.h b/Source/cmGlobalVisualStudio14Generator.h index d7b3656..aed5de6 100644 --- a/Source/cmGlobalVisualStudio14Generator.h +++ b/Source/cmGlobalVisualStudio14Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index e189111..42a35b2 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio71Generator.h" #include diff --git a/Source/cmGlobalVisualStudio71Generator.h b/Source/cmGlobalVisualStudio71Generator.h index f6c524c..8b8e37e 100644 --- a/Source/cmGlobalVisualStudio71Generator.h +++ b/Source/cmGlobalVisualStudio71Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index 6d87e2e..b1c7a24 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio7Generator.h" #include diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h index 44b26e3..c4f45b6 100644 --- a/Source/cmGlobalVisualStudio7Generator.h +++ b/Source/cmGlobalVisualStudio7Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index dc6b6c7..e8edb03 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudio8Generator.h" #include diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h index 75bc026..52f94bf 100644 --- a/Source/cmGlobalVisualStudio8Generator.h +++ b/Source/cmGlobalVisualStudio8Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx index 61ef5cb..c66c03a 100644 --- a/Source/cmGlobalVisualStudioGenerator.cxx +++ b/Source/cmGlobalVisualStudioGenerator.cxx @@ -1,6 +1,6 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudioGenerator.h" #include diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 3f1259b..2fce9bb 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.cxx b/Source/cmGlobalVisualStudioVersionedGenerator.cxx index 1a14c65..5fb081e 100644 --- a/Source/cmGlobalVisualStudioVersionedGenerator.cxx +++ b/Source/cmGlobalVisualStudioVersionedGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalVisualStudioVersionedGenerator.h" #include diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.h b/Source/cmGlobalVisualStudioVersionedGenerator.h index 5f2c177..b597965 100644 --- a/Source/cmGlobalVisualStudioVersionedGenerator.h +++ b/Source/cmGlobalVisualStudioVersionedGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalWatcomWMakeGenerator.cxx b/Source/cmGlobalWatcomWMakeGenerator.cxx index 42ec223..1036747 100644 --- a/Source/cmGlobalWatcomWMakeGenerator.cxx +++ b/Source/cmGlobalWatcomWMakeGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalWatcomWMakeGenerator.h" #include diff --git a/Source/cmGlobalWatcomWMakeGenerator.h b/Source/cmGlobalWatcomWMakeGenerator.h index 4816109..d0fb653 100644 --- a/Source/cmGlobalWatcomWMakeGenerator.h +++ b/Source/cmGlobalWatcomWMakeGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index f8a2b58..58a5707 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGlobalXCodeGenerator.h" #include diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h index dff8520..b12540f 100644 --- a/Source/cmGlobalXCodeGenerator.h +++ b/Source/cmGlobalXCodeGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGraphAdjacencyList.h b/Source/cmGraphAdjacencyList.h index 01fc5f9..673d219 100644 --- a/Source/cmGraphAdjacencyList.h +++ b/Source/cmGraphAdjacencyList.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmGraphVizWriter.cxx b/Source/cmGraphVizWriter.cxx index 50e8891..45461c6 100644 --- a/Source/cmGraphVizWriter.cxx +++ b/Source/cmGraphVizWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmGraphVizWriter.h" #include diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h index ab60065..7346c43 100644 --- a/Source/cmGraphVizWriter.h +++ b/Source/cmGraphVizWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmHexFileConverter.cxx b/Source/cmHexFileConverter.cxx index 4acb34f..a028bb4 100644 --- a/Source/cmHexFileConverter.cxx +++ b/Source/cmHexFileConverter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmHexFileConverter.h" #include diff --git a/Source/cmHexFileConverter.h b/Source/cmHexFileConverter.h index 28e8d5b..df04230 100644 --- a/Source/cmHexFileConverter.h +++ b/Source/cmHexFileConverter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIDEFlagTable.h b/Source/cmIDEFlagTable.h index 5901771..c4b2604 100644 --- a/Source/cmIDEFlagTable.h +++ b/Source/cmIDEFlagTable.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmIDEOptions.cxx b/Source/cmIDEOptions.cxx index f43cbe9..9e48546 100644 --- a/Source/cmIDEOptions.cxx +++ b/Source/cmIDEOptions.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIDEOptions.h" #include diff --git a/Source/cmIDEOptions.h b/Source/cmIDEOptions.h index f943177..3886e06 100644 --- a/Source/cmIDEOptions.h +++ b/Source/cmIDEOptions.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 0b80aaa..ab27a92 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIfCommand.h" #include diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index f056587..5b1786c 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmImportedCxxModuleInfo.cxx b/Source/cmImportedCxxModuleInfo.cxx index ad49a8d..26c1566 100644 --- a/Source/cmImportedCxxModuleInfo.cxx +++ b/Source/cmImportedCxxModuleInfo.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmImportedCxxModuleInfo.h" diff --git a/Source/cmImportedCxxModuleInfo.h b/Source/cmImportedCxxModuleInfo.h index 1b29a06..a15752b 100644 --- a/Source/cmImportedCxxModuleInfo.h +++ b/Source/cmImportedCxxModuleInfo.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIncludeCommand.cxx b/Source/cmIncludeCommand.cxx index e54a8b7..d4759da 100644 --- a/Source/cmIncludeCommand.cxx +++ b/Source/cmIncludeCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIncludeCommand.h" #include diff --git a/Source/cmIncludeCommand.h b/Source/cmIncludeCommand.h index af26163..0f71647 100644 --- a/Source/cmIncludeCommand.h +++ b/Source/cmIncludeCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx index a74b175..c08d15e 100644 --- a/Source/cmIncludeDirectoryCommand.cxx +++ b/Source/cmIncludeDirectoryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIncludeDirectoryCommand.h" #include diff --git a/Source/cmIncludeDirectoryCommand.h b/Source/cmIncludeDirectoryCommand.h index d830dbf..92e7bfa 100644 --- a/Source/cmIncludeDirectoryCommand.h +++ b/Source/cmIncludeDirectoryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx index c8b4a39..d6e84fa 100644 --- a/Source/cmIncludeExternalMSProjectCommand.cxx +++ b/Source/cmIncludeExternalMSProjectCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIncludeExternalMSProjectCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmIncludeExternalMSProjectCommand.h b/Source/cmIncludeExternalMSProjectCommand.h index fd77407..2b5c1a5 100644 --- a/Source/cmIncludeExternalMSProjectCommand.h +++ b/Source/cmIncludeExternalMSProjectCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIncludeGuardCommand.cxx b/Source/cmIncludeGuardCommand.cxx index 2b0e03c..665517d 100644 --- a/Source/cmIncludeGuardCommand.cxx +++ b/Source/cmIncludeGuardCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIncludeGuardCommand.h" #include "cmCryptoHash.h" diff --git a/Source/cmIncludeGuardCommand.h b/Source/cmIncludeGuardCommand.h index c4de3d4..7b8c563 100644 --- a/Source/cmIncludeGuardCommand.h +++ b/Source/cmIncludeGuardCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmIncludeRegularExpressionCommand.cxx b/Source/cmIncludeRegularExpressionCommand.cxx index cdcc7df..8bf24a5 100644 --- a/Source/cmIncludeRegularExpressionCommand.cxx +++ b/Source/cmIncludeRegularExpressionCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmIncludeRegularExpressionCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmIncludeRegularExpressionCommand.h b/Source/cmIncludeRegularExpressionCommand.h index a402f97..7532a64 100644 --- a/Source/cmIncludeRegularExpressionCommand.h +++ b/Source/cmIncludeRegularExpressionCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallAndroidMKExportGenerator.cxx b/Source/cmInstallAndroidMKExportGenerator.cxx index b038ac1..12b212f 100644 --- a/Source/cmInstallAndroidMKExportGenerator.cxx +++ b/Source/cmInstallAndroidMKExportGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallAndroidMKExportGenerator.h" #include diff --git a/Source/cmInstallAndroidMKExportGenerator.h b/Source/cmInstallAndroidMKExportGenerator.h index 4ee80d4..1167a8a 100644 --- a/Source/cmInstallAndroidMKExportGenerator.h +++ b/Source/cmInstallAndroidMKExportGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallCMakeConfigExportGenerator.cxx b/Source/cmInstallCMakeConfigExportGenerator.cxx index e247e5b..4f5b82e 100644 --- a/Source/cmInstallCMakeConfigExportGenerator.cxx +++ b/Source/cmInstallCMakeConfigExportGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallCMakeConfigExportGenerator.h" #include diff --git a/Source/cmInstallCMakeConfigExportGenerator.h b/Source/cmInstallCMakeConfigExportGenerator.h index 03296de..6ca5c9a 100644 --- a/Source/cmInstallCMakeConfigExportGenerator.h +++ b/Source/cmInstallCMakeConfigExportGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx index 89cf028..e0044c6 100644 --- a/Source/cmInstallCommand.cxx +++ b/Source/cmInstallCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallCommand.h" #include diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index f0ba44e..1d3f79e 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallCommandArguments.cxx b/Source/cmInstallCommandArguments.cxx index 420031d..23b38f6 100644 --- a/Source/cmInstallCommandArguments.cxx +++ b/Source/cmInstallCommandArguments.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallCommandArguments.h" #include diff --git a/Source/cmInstallCommandArguments.h b/Source/cmInstallCommandArguments.h index d7800a3..7bf861e 100644 --- a/Source/cmInstallCommandArguments.h +++ b/Source/cmInstallCommandArguments.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallCxxModuleBmiGenerator.cxx b/Source/cmInstallCxxModuleBmiGenerator.cxx index 3f02ce2..37d9ce5 100644 --- a/Source/cmInstallCxxModuleBmiGenerator.cxx +++ b/Source/cmInstallCxxModuleBmiGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallCxxModuleBmiGenerator.h" #include diff --git a/Source/cmInstallCxxModuleBmiGenerator.h b/Source/cmInstallCxxModuleBmiGenerator.h index 632d34b..b3b5d37 100644 --- a/Source/cmInstallCxxModuleBmiGenerator.h +++ b/Source/cmInstallCxxModuleBmiGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallDirectoryGenerator.cxx b/Source/cmInstallDirectoryGenerator.cxx index b62f38b..0eeebcf 100644 --- a/Source/cmInstallDirectoryGenerator.cxx +++ b/Source/cmInstallDirectoryGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallDirectoryGenerator.h" #include diff --git a/Source/cmInstallDirectoryGenerator.h b/Source/cmInstallDirectoryGenerator.h index 56ebd0e..b02824a 100644 --- a/Source/cmInstallDirectoryGenerator.h +++ b/Source/cmInstallDirectoryGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallExportGenerator.cxx b/Source/cmInstallExportGenerator.cxx index 9828bf2..4ba3f01 100644 --- a/Source/cmInstallExportGenerator.cxx +++ b/Source/cmInstallExportGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallExportGenerator.h" #include diff --git a/Source/cmInstallExportGenerator.h b/Source/cmInstallExportGenerator.h index 93cfc8f..eb2d5dd 100644 --- a/Source/cmInstallExportGenerator.h +++ b/Source/cmInstallExportGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallFileSetGenerator.cxx b/Source/cmInstallFileSetGenerator.cxx index f471253..d40d262 100644 --- a/Source/cmInstallFileSetGenerator.cxx +++ b/Source/cmInstallFileSetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallFileSetGenerator.h" #include diff --git a/Source/cmInstallFileSetGenerator.h b/Source/cmInstallFileSetGenerator.h index 4688623..b13a5e0 100644 --- a/Source/cmInstallFileSetGenerator.h +++ b/Source/cmInstallFileSetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallFilesCommand.cxx b/Source/cmInstallFilesCommand.cxx index f1c5cc5..8490f69 100644 --- a/Source/cmInstallFilesCommand.cxx +++ b/Source/cmInstallFilesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallFilesCommand.h" #include diff --git a/Source/cmInstallFilesCommand.h b/Source/cmInstallFilesCommand.h index 219bb97..c2ba0fd 100644 --- a/Source/cmInstallFilesCommand.h +++ b/Source/cmInstallFilesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallFilesGenerator.cxx b/Source/cmInstallFilesGenerator.cxx index ed270b3..febeb52 100644 --- a/Source/cmInstallFilesGenerator.cxx +++ b/Source/cmInstallFilesGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallFilesGenerator.h" #include diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h index fd97904..5ab2f50 100644 --- a/Source/cmInstallFilesGenerator.h +++ b/Source/cmInstallFilesGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallGenerator.cxx b/Source/cmInstallGenerator.cxx index 0a3822c..b49b0ea 100644 --- a/Source/cmInstallGenerator.cxx +++ b/Source/cmInstallGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallGenerator.h" #include diff --git a/Source/cmInstallGenerator.h b/Source/cmInstallGenerator.h index 3257969..27f4b4f 100644 --- a/Source/cmInstallGenerator.h +++ b/Source/cmInstallGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallGetRuntimeDependenciesGenerator.cxx b/Source/cmInstallGetRuntimeDependenciesGenerator.cxx index 4aeb97b..9e1ecc1 100644 --- a/Source/cmInstallGetRuntimeDependenciesGenerator.cxx +++ b/Source/cmInstallGetRuntimeDependenciesGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallGetRuntimeDependenciesGenerator.h" #include diff --git a/Source/cmInstallGetRuntimeDependenciesGenerator.h b/Source/cmInstallGetRuntimeDependenciesGenerator.h index 4de53c2..11b6d87 100644 --- a/Source/cmInstallGetRuntimeDependenciesGenerator.h +++ b/Source/cmInstallGetRuntimeDependenciesGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallImportedRuntimeArtifactsGenerator.cxx b/Source/cmInstallImportedRuntimeArtifactsGenerator.cxx index 14a8423..9552748 100644 --- a/Source/cmInstallImportedRuntimeArtifactsGenerator.cxx +++ b/Source/cmInstallImportedRuntimeArtifactsGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallImportedRuntimeArtifactsGenerator.h" #include diff --git a/Source/cmInstallImportedRuntimeArtifactsGenerator.h b/Source/cmInstallImportedRuntimeArtifactsGenerator.h index 89bbd4e..ec68587 100644 --- a/Source/cmInstallImportedRuntimeArtifactsGenerator.h +++ b/Source/cmInstallImportedRuntimeArtifactsGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallMode.h b/Source/cmInstallMode.h index 5343d34..64a90bd 100644 --- a/Source/cmInstallMode.h +++ b/Source/cmInstallMode.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /** diff --git a/Source/cmInstallPackageInfoExportGenerator.cxx b/Source/cmInstallPackageInfoExportGenerator.cxx index 4ff045b..756ef6a 100644 --- a/Source/cmInstallPackageInfoExportGenerator.cxx +++ b/Source/cmInstallPackageInfoExportGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallPackageInfoExportGenerator.h" #include diff --git a/Source/cmInstallPackageInfoExportGenerator.h b/Source/cmInstallPackageInfoExportGenerator.h index c79df84..a5413d9 100644 --- a/Source/cmInstallPackageInfoExportGenerator.h +++ b/Source/cmInstallPackageInfoExportGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallProgramsCommand.cxx b/Source/cmInstallProgramsCommand.cxx index 774a191..63f40e2 100644 --- a/Source/cmInstallProgramsCommand.cxx +++ b/Source/cmInstallProgramsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallProgramsCommand.h" #include diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h index e3c3e81..584ee8e 100644 --- a/Source/cmInstallProgramsCommand.h +++ b/Source/cmInstallProgramsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallRuntimeDependencySet.cxx b/Source/cmInstallRuntimeDependencySet.cxx index eb4b67d..c4933a0 100644 --- a/Source/cmInstallRuntimeDependencySet.cxx +++ b/Source/cmInstallRuntimeDependencySet.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallRuntimeDependencySet.h" #include diff --git a/Source/cmInstallRuntimeDependencySet.h b/Source/cmInstallRuntimeDependencySet.h index 2efdbe4..1b20ce1 100644 --- a/Source/cmInstallRuntimeDependencySet.h +++ b/Source/cmInstallRuntimeDependencySet.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallRuntimeDependencySetGenerator.cxx b/Source/cmInstallRuntimeDependencySetGenerator.cxx index ba0370b..0f9197a 100644 --- a/Source/cmInstallRuntimeDependencySetGenerator.cxx +++ b/Source/cmInstallRuntimeDependencySetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallRuntimeDependencySetGenerator.h" #include diff --git a/Source/cmInstallRuntimeDependencySetGenerator.h b/Source/cmInstallRuntimeDependencySetGenerator.h index 0a96134..f8a7a4f 100644 --- a/Source/cmInstallRuntimeDependencySetGenerator.h +++ b/Source/cmInstallRuntimeDependencySetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallScriptGenerator.cxx b/Source/cmInstallScriptGenerator.cxx index eebedac..7173305 100644 --- a/Source/cmInstallScriptGenerator.cxx +++ b/Source/cmInstallScriptGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallScriptGenerator.h" #include diff --git a/Source/cmInstallScriptGenerator.h b/Source/cmInstallScriptGenerator.h index 120eb45..104d432 100644 --- a/Source/cmInstallScriptGenerator.h +++ b/Source/cmInstallScriptGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallScriptHandler.cxx b/Source/cmInstallScriptHandler.cxx index 16f1120..03fada0 100644 --- a/Source/cmInstallScriptHandler.cxx +++ b/Source/cmInstallScriptHandler.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallScriptHandler.h" diff --git a/Source/cmInstallScriptHandler.h b/Source/cmInstallScriptHandler.h index bf2246f..4323c6a 100644 --- a/Source/cmInstallScriptHandler.h +++ b/Source/cmInstallScriptHandler.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmInstallSubdirectoryGenerator.cxx b/Source/cmInstallSubdirectoryGenerator.cxx index 7213ba7..34de2f6 100644 --- a/Source/cmInstallSubdirectoryGenerator.cxx +++ b/Source/cmInstallSubdirectoryGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallSubdirectoryGenerator.h" #include diff --git a/Source/cmInstallSubdirectoryGenerator.h b/Source/cmInstallSubdirectoryGenerator.h index 7a472ed..4745ff8 100644 --- a/Source/cmInstallSubdirectoryGenerator.h +++ b/Source/cmInstallSubdirectoryGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx index 960cdf9..bd3b700 100644 --- a/Source/cmInstallTargetGenerator.cxx +++ b/Source/cmInstallTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallTargetGenerator.h" #include diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h index a236ce7..da51a81 100644 --- a/Source/cmInstallTargetGenerator.h +++ b/Source/cmInstallTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallTargetsCommand.cxx b/Source/cmInstallTargetsCommand.cxx index 44f23a5..66d40b0 100644 --- a/Source/cmInstallTargetsCommand.cxx +++ b/Source/cmInstallTargetsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstallTargetsCommand.h" #include diff --git a/Source/cmInstallTargetsCommand.h b/Source/cmInstallTargetsCommand.h index 716e7ce..ec48624 100644 --- a/Source/cmInstallTargetsCommand.h +++ b/Source/cmInstallTargetsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstallType.h b/Source/cmInstallType.h index 33fa7a9..fe7c6de 100644 --- a/Source/cmInstallType.h +++ b/Source/cmInstallType.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /** diff --git a/Source/cmInstalledFile.cxx b/Source/cmInstalledFile.cxx index 0bdea3c..b582b83 100644 --- a/Source/cmInstalledFile.cxx +++ b/Source/cmInstalledFile.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstalledFile.h" #include diff --git a/Source/cmInstalledFile.h b/Source/cmInstalledFile.h index fd1250c..b8021c0 100644 --- a/Source/cmInstalledFile.h +++ b/Source/cmInstalledFile.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstrumentation.h b/Source/cmInstrumentation.h index 0382495..b044885 100644 --- a/Source/cmInstrumentation.h +++ b/Source/cmInstrumentation.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstrumentationCommand.cxx b/Source/cmInstrumentationCommand.cxx index 3b530ee..d638f30 100644 --- a/Source/cmInstrumentationCommand.cxx +++ b/Source/cmInstrumentationCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmInstrumentationCommand.h" #include diff --git a/Source/cmInstrumentationCommand.h b/Source/cmInstrumentationCommand.h index 0a9c10d..ffd4d63 100644 --- a/Source/cmInstrumentationCommand.h +++ b/Source/cmInstrumentationCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying -file Copyright.txt or https://cmake.org/licensing for details. */ +file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmInstrumentationQuery.h b/Source/cmInstrumentationQuery.h index b8d8936..3d5fdac 100644 --- a/Source/cmInstrumentationQuery.h +++ b/Source/cmInstrumentationQuery.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmJSONHelpers.cxx b/Source/cmJSONHelpers.cxx index 6e84842..a79e3ab 100644 --- a/Source/cmJSONHelpers.cxx +++ b/Source/cmJSONHelpers.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep #include "cmJSONHelpers.h" diff --git a/Source/cmJSONHelpers.h b/Source/cmJSONHelpers.h index 8e1523c..a5f71dd 100644 --- a/Source/cmJSONHelpers.h +++ b/Source/cmJSONHelpers.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmJSONState.cxx b/Source/cmJSONState.cxx index 7add5df..d9ba87e 100644 --- a/Source/cmJSONState.cxx +++ b/Source/cmJSONState.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmJSONState.h" diff --git a/Source/cmJSONState.h b/Source/cmJSONState.h index 9dfa3e2..6bb9a46 100644 --- a/Source/cmJSONState.h +++ b/Source/cmJSONState.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLDConfigLDConfigTool.cxx b/Source/cmLDConfigLDConfigTool.cxx index b9acc92..dcc17e3 100644 --- a/Source/cmLDConfigLDConfigTool.cxx +++ b/Source/cmLDConfigLDConfigTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLDConfigLDConfigTool.h" diff --git a/Source/cmLDConfigLDConfigTool.h b/Source/cmLDConfigLDConfigTool.h index eeb86dd..08bd044 100644 --- a/Source/cmLDConfigLDConfigTool.h +++ b/Source/cmLDConfigLDConfigTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmLDConfigTool.cxx b/Source/cmLDConfigTool.cxx index 8d5d563..7323a5b 100644 --- a/Source/cmLDConfigTool.cxx +++ b/Source/cmLDConfigTool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLDConfigTool.h" diff --git a/Source/cmLDConfigTool.h b/Source/cmLDConfigTool.h index 3116f80..76617e5 100644 --- a/Source/cmLDConfigTool.h +++ b/Source/cmLDConfigTool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmLinkDirectoriesCommand.cxx b/Source/cmLinkDirectoriesCommand.cxx index d45d495..a081186 100644 --- a/Source/cmLinkDirectoriesCommand.cxx +++ b/Source/cmLinkDirectoriesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLinkDirectoriesCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmLinkDirectoriesCommand.h b/Source/cmLinkDirectoriesCommand.h index 2a3499d..1eada4f 100644 --- a/Source/cmLinkDirectoriesCommand.h +++ b/Source/cmLinkDirectoriesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLinkItem.cxx b/Source/cmLinkItem.cxx index a51be48..7f21fbe 100644 --- a/Source/cmLinkItem.cxx +++ b/Source/cmLinkItem.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLinkItem.h" #include // IWYU pragma: keep diff --git a/Source/cmLinkItem.h b/Source/cmLinkItem.h index 6a8bbe9..bc2717c 100644 --- a/Source/cmLinkItem.h +++ b/Source/cmLinkItem.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLinkItemGraphVisitor.cxx b/Source/cmLinkItemGraphVisitor.cxx index 39b8c6f..65a1be0 100644 --- a/Source/cmLinkItemGraphVisitor.cxx +++ b/Source/cmLinkItemGraphVisitor.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLinkItemGraphVisitor.h" #include diff --git a/Source/cmLinkItemGraphVisitor.h b/Source/cmLinkItemGraphVisitor.h index 0d6676a..1ad12a4 100644 --- a/Source/cmLinkItemGraphVisitor.h +++ b/Source/cmLinkItemGraphVisitor.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmLinkLibrariesCommand.cxx b/Source/cmLinkLibrariesCommand.cxx index 2b8f836..74fe393 100644 --- a/Source/cmLinkLibrariesCommand.cxx +++ b/Source/cmLinkLibrariesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLinkLibrariesCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmLinkLibrariesCommand.h b/Source/cmLinkLibrariesCommand.h index 27c410f..7c5af0d 100644 --- a/Source/cmLinkLibrariesCommand.h +++ b/Source/cmLinkLibrariesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLinkLineComputer.cxx b/Source/cmLinkLineComputer.cxx index ceef5cc..032e84d 100644 --- a/Source/cmLinkLineComputer.cxx +++ b/Source/cmLinkLineComputer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLinkLineComputer.h" diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h index 63cbeb2..a86a3ad 100644 --- a/Source/cmLinkLineComputer.h +++ b/Source/cmLinkLineComputer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmLinkLineDeviceComputer.cxx b/Source/cmLinkLineDeviceComputer.cxx index dac37ac..421aa54 100644 --- a/Source/cmLinkLineDeviceComputer.cxx +++ b/Source/cmLinkLineDeviceComputer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLinkLineDeviceComputer.h" diff --git a/Source/cmLinkLineDeviceComputer.h b/Source/cmLinkLineDeviceComputer.h index c7c5c17..965a821 100644 --- a/Source/cmLinkLineDeviceComputer.h +++ b/Source/cmLinkLineDeviceComputer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmLinkedTree.h b/Source/cmLinkedTree.h index 616bf7e..dd0197a 100644 --- a/Source/cmLinkedTree.h +++ b/Source/cmLinkedTree.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmList.cxx b/Source/cmList.cxx index 074e06f..9b3827b 100644 --- a/Source/cmList.cxx +++ b/Source/cmList.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmList.h b/Source/cmList.h index b5be0b9..2dbeadf 100644 --- a/Source/cmList.h +++ b/Source/cmList.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmListCommand.cxx b/Source/cmListCommand.cxx index 7e046e0..47b6c39 100644 --- a/Source/cmListCommand.cxx +++ b/Source/cmListCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmListCommand.h" #include diff --git a/Source/cmListCommand.h b/Source/cmListCommand.h index 6efab16..6025a68 100644 --- a/Source/cmListCommand.h +++ b/Source/cmListCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx index 8216429..9aa5b20 100644 --- a/Source/cmListFileCache.cxx +++ b/Source/cmListFileCache.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #define cmListFileCache_cxx #include "cmListFileCache.h" diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index 5068266..ad78c51 100644 --- a/Source/cmListFileCache.h +++ b/Source/cmListFileCache.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmListFileLexer.h b/Source/cmListFileLexer.h index 55f5d62..5d56f02 100644 --- a/Source/cmListFileLexer.h +++ b/Source/cmListFileLexer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #ifdef __cplusplus diff --git a/Source/cmLoadCacheCommand.cxx b/Source/cmLoadCacheCommand.cxx index ee45d43..d88dbb3 100644 --- a/Source/cmLoadCacheCommand.cxx +++ b/Source/cmLoadCacheCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLoadCacheCommand.h" #include diff --git a/Source/cmLoadCacheCommand.h b/Source/cmLoadCacheCommand.h index 5f5b705..3deac9e 100644 --- a/Source/cmLoadCacheCommand.h +++ b/Source/cmLoadCacheCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalCommonGenerator.cxx b/Source/cmLocalCommonGenerator.cxx index 14b3040..8157509 100644 --- a/Source/cmLocalCommonGenerator.cxx +++ b/Source/cmLocalCommonGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalCommonGenerator.h" #include diff --git a/Source/cmLocalCommonGenerator.h b/Source/cmLocalCommonGenerator.h index 52f7a9e..6760277 100644 --- a/Source/cmLocalCommonGenerator.h +++ b/Source/cmLocalCommonGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 4d967ca..3693671 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalGenerator.h" #include diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index d7a840a..6fae5e1 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalGhsMultiGenerator.cxx b/Source/cmLocalGhsMultiGenerator.cxx index b223813..89f5014 100644 --- a/Source/cmLocalGhsMultiGenerator.cxx +++ b/Source/cmLocalGhsMultiGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalGhsMultiGenerator.h" #include diff --git a/Source/cmLocalGhsMultiGenerator.h b/Source/cmLocalGhsMultiGenerator.h index be32a94..698ef39 100644 --- a/Source/cmLocalGhsMultiGenerator.h +++ b/Source/cmLocalGhsMultiGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx index b8af786..842c76c 100644 --- a/Source/cmLocalNinjaGenerator.cxx +++ b/Source/cmLocalNinjaGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalNinjaGenerator.h" #include diff --git a/Source/cmLocalNinjaGenerator.h b/Source/cmLocalNinjaGenerator.h index 48e7434..549858c 100644 --- a/Source/cmLocalNinjaGenerator.h +++ b/Source/cmLocalNinjaGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 7654466..7e86371 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalUnixMakefileGenerator3.h" #include diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 573c2c5..55b939a 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalVisualStudio10Generator.cxx b/Source/cmLocalVisualStudio10Generator.cxx index 0b8d55d..586aeb8 100644 --- a/Source/cmLocalVisualStudio10Generator.cxx +++ b/Source/cmLocalVisualStudio10Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalVisualStudio10Generator.h" #include diff --git a/Source/cmLocalVisualStudio10Generator.h b/Source/cmLocalVisualStudio10Generator.h index f1f828e..a8c8d45 100644 --- a/Source/cmLocalVisualStudio10Generator.h +++ b/Source/cmLocalVisualStudio10Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 84b3d99..ae98399 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalVisualStudio7Generator.h" #include diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index 612bbf2..c1002c5 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalVisualStudioGenerator.cxx b/Source/cmLocalVisualStudioGenerator.cxx index ebfc6ec..381e914 100644 --- a/Source/cmLocalVisualStudioGenerator.cxx +++ b/Source/cmLocalVisualStudioGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalVisualStudioGenerator.h" #include diff --git a/Source/cmLocalVisualStudioGenerator.h b/Source/cmLocalVisualStudioGenerator.h index a7da212..7303f92 100644 --- a/Source/cmLocalVisualStudioGenerator.h +++ b/Source/cmLocalVisualStudioGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocalXCodeGenerator.cxx b/Source/cmLocalXCodeGenerator.cxx index 06aa1c8..c2ea1f2 100644 --- a/Source/cmLocalXCodeGenerator.cxx +++ b/Source/cmLocalXCodeGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmLocalXCodeGenerator.h" #include diff --git a/Source/cmLocalXCodeGenerator.h b/Source/cmLocalXCodeGenerator.h index 2725e4a..49a5e93 100644 --- a/Source/cmLocalXCodeGenerator.h +++ b/Source/cmLocalXCodeGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmLocale.h b/Source/cmLocale.h index f7636ac..b0d1065 100644 --- a/Source/cmLocale.h +++ b/Source/cmLocale.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMSVC60LinkLineComputer.cxx b/Source/cmMSVC60LinkLineComputer.cxx index 8cf3765..a98984c 100644 --- a/Source/cmMSVC60LinkLineComputer.cxx +++ b/Source/cmMSVC60LinkLineComputer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMSVC60LinkLineComputer.h" diff --git a/Source/cmMSVC60LinkLineComputer.h b/Source/cmMSVC60LinkLineComputer.h index 0a303ab..fbed49e 100644 --- a/Source/cmMSVC60LinkLineComputer.h +++ b/Source/cmMSVC60LinkLineComputer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmMachO.cxx b/Source/cmMachO.cxx index 779eef8..a8a766f 100644 --- a/Source/cmMachO.cxx +++ b/Source/cmMachO.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMachO.h" #include diff --git a/Source/cmMachO.h b/Source/cmMachO.h index 2312518..506bc7e 100644 --- a/Source/cmMachO.h +++ b/Source/cmMachO.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMacroCommand.cxx b/Source/cmMacroCommand.cxx index 38f27a0..48c23f3 100644 --- a/Source/cmMacroCommand.cxx +++ b/Source/cmMacroCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMacroCommand.h" #include diff --git a/Source/cmMacroCommand.h b/Source/cmMacroCommand.h index b65a887..a5de516 100644 --- a/Source/cmMacroCommand.h +++ b/Source/cmMacroCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMakeDirectoryCommand.cxx b/Source/cmMakeDirectoryCommand.cxx index ec8b826..241e0cd 100644 --- a/Source/cmMakeDirectoryCommand.cxx +++ b/Source/cmMakeDirectoryCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMakeDirectoryCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmMakeDirectoryCommand.h b/Source/cmMakeDirectoryCommand.h index 340bca8..746efde 100644 --- a/Source/cmMakeDirectoryCommand.h +++ b/Source/cmMakeDirectoryCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index d98c59b..34d917c 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep #include "cmMakefile.h" diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 59b3a68..bfc3496 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index 85b2cfd..c812874 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMakefileExecutableTargetGenerator.h" #include diff --git a/Source/cmMakefileExecutableTargetGenerator.h b/Source/cmMakefileExecutableTargetGenerator.h index e600fdd..5c18e9e 100644 --- a/Source/cmMakefileExecutableTargetGenerator.h +++ b/Source/cmMakefileExecutableTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 9774d12..57b6991 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMakefileLibraryTargetGenerator.h" #include diff --git a/Source/cmMakefileLibraryTargetGenerator.h b/Source/cmMakefileLibraryTargetGenerator.h index 9bac4cf..d355199 100644 --- a/Source/cmMakefileLibraryTargetGenerator.h +++ b/Source/cmMakefileLibraryTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMakefileProfilingData.cxx b/Source/cmMakefileProfilingData.cxx index 52fa8e3..2f6cf0f 100644 --- a/Source/cmMakefileProfilingData.cxx +++ b/Source/cmMakefileProfilingData.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMakefileProfilingData.h" #include diff --git a/Source/cmMakefileProfilingData.h b/Source/cmMakefileProfilingData.h index dc9e890..58cdfac 100644 --- a/Source/cmMakefileProfilingData.h +++ b/Source/cmMakefileProfilingData.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include #include diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index ed232c8..21c1d19 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMakefileTargetGenerator.h" #include diff --git a/Source/cmMakefileTargetGenerator.h b/Source/cmMakefileTargetGenerator.h index 484d223..fe255f4 100644 --- a/Source/cmMakefileTargetGenerator.h +++ b/Source/cmMakefileTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMakefileUtilityTargetGenerator.cxx b/Source/cmMakefileUtilityTargetGenerator.cxx index d83cafb..3a5bdc5 100644 --- a/Source/cmMakefileUtilityTargetGenerator.cxx +++ b/Source/cmMakefileUtilityTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMakefileUtilityTargetGenerator.h" #include diff --git a/Source/cmMakefileUtilityTargetGenerator.h b/Source/cmMakefileUtilityTargetGenerator.h index d2b4ba5..5c1df5d 100644 --- a/Source/cmMakefileUtilityTargetGenerator.h +++ b/Source/cmMakefileUtilityTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMarkAsAdvancedCommand.cxx b/Source/cmMarkAsAdvancedCommand.cxx index 318673d..963076b 100644 --- a/Source/cmMarkAsAdvancedCommand.cxx +++ b/Source/cmMarkAsAdvancedCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMarkAsAdvancedCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmMarkAsAdvancedCommand.h b/Source/cmMarkAsAdvancedCommand.h index e420e64..c58459a 100644 --- a/Source/cmMarkAsAdvancedCommand.h +++ b/Source/cmMarkAsAdvancedCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMathCommand.cxx b/Source/cmMathCommand.cxx index 369b641..85c5281 100644 --- a/Source/cmMathCommand.cxx +++ b/Source/cmMathCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMathCommand.h" #include diff --git a/Source/cmMathCommand.h b/Source/cmMathCommand.h index e6b347b..8a4cf0b 100644 --- a/Source/cmMathCommand.h +++ b/Source/cmMathCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMessageCommand.cxx b/Source/cmMessageCommand.cxx index 1033488..34092b3 100644 --- a/Source/cmMessageCommand.cxx +++ b/Source/cmMessageCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMessageCommand.h" #include diff --git a/Source/cmMessageCommand.h b/Source/cmMessageCommand.h index c37098c..9c42ddb 100644 --- a/Source/cmMessageCommand.h +++ b/Source/cmMessageCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMessageMetadata.h b/Source/cmMessageMetadata.h index 974d575..51f6ae2 100644 --- a/Source/cmMessageMetadata.h +++ b/Source/cmMessageMetadata.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmsys/Terminal.h" diff --git a/Source/cmMessageType.h b/Source/cmMessageType.h index a877592..a7b5b07 100644 --- a/Source/cmMessageType.h +++ b/Source/cmMessageType.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmMessenger.cxx b/Source/cmMessenger.cxx index f7a7b83..b8055a2 100644 --- a/Source/cmMessenger.cxx +++ b/Source/cmMessenger.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmMessenger.h" #include "cmDocumentationFormatter.h" diff --git a/Source/cmMessenger.h b/Source/cmMessenger.h index e8852e6..ad04b77 100644 --- a/Source/cmMessenger.h +++ b/Source/cmMessenger.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmNewLineStyle.cxx b/Source/cmNewLineStyle.cxx index 59e6c60..c693d47 100644 --- a/Source/cmNewLineStyle.cxx +++ b/Source/cmNewLineStyle.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmNewLineStyle.h" #include diff --git a/Source/cmNewLineStyle.h b/Source/cmNewLineStyle.h index d21ae6b..305a797 100644 --- a/Source/cmNewLineStyle.h +++ b/Source/cmNewLineStyle.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmNinjaLinkLineComputer.cxx b/Source/cmNinjaLinkLineComputer.cxx index 2304ad2..45ddc30 100644 --- a/Source/cmNinjaLinkLineComputer.cxx +++ b/Source/cmNinjaLinkLineComputer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmNinjaLinkLineComputer.h" diff --git a/Source/cmNinjaLinkLineComputer.h b/Source/cmNinjaLinkLineComputer.h index 5d22f3e..b58e421 100644 --- a/Source/cmNinjaLinkLineComputer.h +++ b/Source/cmNinjaLinkLineComputer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmNinjaLinkLineDeviceComputer.cxx b/Source/cmNinjaLinkLineDeviceComputer.cxx index f66e2f5..ad186eb 100644 --- a/Source/cmNinjaLinkLineDeviceComputer.cxx +++ b/Source/cmNinjaLinkLineDeviceComputer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmNinjaLinkLineDeviceComputer.h" diff --git a/Source/cmNinjaLinkLineDeviceComputer.h b/Source/cmNinjaLinkLineDeviceComputer.h index 457f036..e206969 100644 --- a/Source/cmNinjaLinkLineDeviceComputer.h +++ b/Source/cmNinjaLinkLineDeviceComputer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx index 707e437..99c0761 100644 --- a/Source/cmNinjaNormalTargetGenerator.cxx +++ b/Source/cmNinjaNormalTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmNinjaNormalTargetGenerator.h" #include diff --git a/Source/cmNinjaNormalTargetGenerator.h b/Source/cmNinjaNormalTargetGenerator.h index a0193e7..fd2c69f 100644 --- a/Source/cmNinjaNormalTargetGenerator.h +++ b/Source/cmNinjaNormalTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index 99ab466..8d93652 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmNinjaTargetGenerator.h" #include diff --git a/Source/cmNinjaTargetGenerator.h b/Source/cmNinjaTargetGenerator.h index 6cb1dea..7376a84 100644 --- a/Source/cmNinjaTargetGenerator.h +++ b/Source/cmNinjaTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmNinjaTypes.h b/Source/cmNinjaTypes.h index b77e0b5..c76df4d 100644 --- a/Source/cmNinjaTypes.h +++ b/Source/cmNinjaTypes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmNinjaUtilityTargetGenerator.cxx b/Source/cmNinjaUtilityTargetGenerator.cxx index 11ebfb2..f4b95eb 100644 --- a/Source/cmNinjaUtilityTargetGenerator.cxx +++ b/Source/cmNinjaUtilityTargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmNinjaUtilityTargetGenerator.h" #include diff --git a/Source/cmNinjaUtilityTargetGenerator.h b/Source/cmNinjaUtilityTargetGenerator.h index 9ff014c..336101f 100644 --- a/Source/cmNinjaUtilityTargetGenerator.h +++ b/Source/cmNinjaUtilityTargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmOSXBundleGenerator.cxx b/Source/cmOSXBundleGenerator.cxx index c42ed39..e25da96 100644 --- a/Source/cmOSXBundleGenerator.cxx +++ b/Source/cmOSXBundleGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmOSXBundleGenerator.h" #include diff --git a/Source/cmOSXBundleGenerator.h b/Source/cmOSXBundleGenerator.h index 4030ac7..bfd9aec 100644 --- a/Source/cmOSXBundleGenerator.h +++ b/Source/cmOSXBundleGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmOptionCommand.cxx b/Source/cmOptionCommand.cxx index 10e8373..cc20002 100644 --- a/Source/cmOptionCommand.cxx +++ b/Source/cmOptionCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmOptionCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmOptionCommand.h b/Source/cmOptionCommand.h index 912e0ee..06c87ce 100644 --- a/Source/cmOptionCommand.h +++ b/Source/cmOptionCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmOrderDirectories.cxx b/Source/cmOrderDirectories.cxx index 6961b15..8ace6b4 100644 --- a/Source/cmOrderDirectories.cxx +++ b/Source/cmOrderDirectories.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmOrderDirectories.h" #include diff --git a/Source/cmOrderDirectories.h b/Source/cmOrderDirectories.h index 384df73..ea1b845 100644 --- a/Source/cmOrderDirectories.h +++ b/Source/cmOrderDirectories.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx index 9456108..35975f8 100644 --- a/Source/cmOutputConverter.cxx +++ b/Source/cmOutputConverter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmOutputConverter.h" #include diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h index 10ed634..d0e7862 100644 --- a/Source/cmOutputConverter.h +++ b/Source/cmOutputConverter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmPackageInfoReader.cxx b/Source/cmPackageInfoReader.cxx index 503764f..0c71727 100644 --- a/Source/cmPackageInfoReader.cxx +++ b/Source/cmPackageInfoReader.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPackageInfoReader.h" #include diff --git a/Source/cmPackageInfoReader.h b/Source/cmPackageInfoReader.h index 26eb807..1bb6f4d 100644 --- a/Source/cmPackageInfoReader.h +++ b/Source/cmPackageInfoReader.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmParseArgumentsCommand.cxx b/Source/cmParseArgumentsCommand.cxx index 09a2cfc..b043b11 100644 --- a/Source/cmParseArgumentsCommand.cxx +++ b/Source/cmParseArgumentsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmParseArgumentsCommand.h" #include diff --git a/Source/cmParseArgumentsCommand.h b/Source/cmParseArgumentsCommand.h index 008977b..263d25a 100644 --- a/Source/cmParseArgumentsCommand.h +++ b/Source/cmParseArgumentsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmPathLabel.cxx b/Source/cmPathLabel.cxx index b0a7a10..d9790f2 100644 --- a/Source/cmPathLabel.cxx +++ b/Source/cmPathLabel.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPathLabel.h" #include diff --git a/Source/cmPathLabel.h b/Source/cmPathLabel.h index ce6d107..36e7a07 100644 --- a/Source/cmPathLabel.h +++ b/Source/cmPathLabel.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmPathResolver.cxx b/Source/cmPathResolver.cxx index e55ebd0..71ce7b4 100644 --- a/Source/cmPathResolver.cxx +++ b/Source/cmPathResolver.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPathResolver.h" #include diff --git a/Source/cmPathResolver.h b/Source/cmPathResolver.h index efe60a5..1f96e0a 100644 --- a/Source/cmPathResolver.h +++ b/Source/cmPathResolver.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmPkgConfigParser.cxx b/Source/cmPkgConfigParser.cxx index bc04371..3804527 100644 --- a/Source/cmPkgConfigParser.cxx +++ b/Source/cmPkgConfigParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPkgConfigParser.h" diff --git a/Source/cmPkgConfigParser.h b/Source/cmPkgConfigParser.h index 1c233a4..9500c11 100644 --- a/Source/cmPkgConfigParser.h +++ b/Source/cmPkgConfigParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmPkgConfigResolver.cxx b/Source/cmPkgConfigResolver.cxx index 2386e33..0180245 100644 --- a/Source/cmPkgConfigResolver.cxx +++ b/Source/cmPkgConfigResolver.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPkgConfigResolver.h" diff --git a/Source/cmPkgConfigResolver.h b/Source/cmPkgConfigResolver.h index 99bfe87..7112184 100644 --- a/Source/cmPkgConfigResolver.h +++ b/Source/cmPkgConfigResolver.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmPlaceholderExpander.cxx b/Source/cmPlaceholderExpander.cxx index 11c7485..f5dc544 100644 --- a/Source/cmPlaceholderExpander.cxx +++ b/Source/cmPlaceholderExpander.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPlaceholderExpander.h" #include diff --git a/Source/cmPlaceholderExpander.h b/Source/cmPlaceholderExpander.h index 24225cc..3a4b1bc 100644 --- a/Source/cmPlaceholderExpander.h +++ b/Source/cmPlaceholderExpander.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmPlistParser.cxx b/Source/cmPlistParser.cxx index 9259d36..0bd85fc 100644 --- a/Source/cmPlistParser.cxx +++ b/Source/cmPlistParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPlistParser.h" #include diff --git a/Source/cmPlistParser.h b/Source/cmPlistParser.h index 96ed7f6..83d96c8 100644 --- a/Source/cmPlistParser.h +++ b/Source/cmPlistParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index 908a786..8e16d51 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPolicies.h" #include diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index d8a63a6..637e710 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmProcessOutput.cxx b/Source/cmProcessOutput.cxx index cb2533b..ec3fd67 100644 --- a/Source/cmProcessOutput.cxx +++ b/Source/cmProcessOutput.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmProcessOutput.h" diff --git a/Source/cmProcessOutput.h b/Source/cmProcessOutput.h index 9bba4f6..1582cd8 100644 --- a/Source/cmProcessOutput.h +++ b/Source/cmProcessOutput.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmProcessTools.cxx b/Source/cmProcessTools.cxx index 78cfb47..d5d5160 100644 --- a/Source/cmProcessTools.cxx +++ b/Source/cmProcessTools.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmProcessTools.h" #include diff --git a/Source/cmProcessTools.h b/Source/cmProcessTools.h index bcd4000..47b428d 100644 --- a/Source/cmProcessTools.h +++ b/Source/cmProcessTools.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmProjectCommand.cxx b/Source/cmProjectCommand.cxx index dcdcc44..cdab869 100644 --- a/Source/cmProjectCommand.cxx +++ b/Source/cmProjectCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmProjectCommand.h" #include diff --git a/Source/cmProjectCommand.h b/Source/cmProjectCommand.h index 33f0955..711da96 100644 --- a/Source/cmProjectCommand.h +++ b/Source/cmProjectCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmProperty.h b/Source/cmProperty.h index 0781109..5aa631d 100644 --- a/Source/cmProperty.h +++ b/Source/cmProperty.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx index d3069b0..49281ae 100644 --- a/Source/cmPropertyDefinition.cxx +++ b/Source/cmPropertyDefinition.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPropertyDefinition.h" #include diff --git a/Source/cmPropertyDefinition.h b/Source/cmPropertyDefinition.h index ebfde9f..4147d9b 100644 --- a/Source/cmPropertyDefinition.h +++ b/Source/cmPropertyDefinition.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmPropertyMap.cxx b/Source/cmPropertyMap.cxx index dc55175..cb8938f 100644 --- a/Source/cmPropertyMap.cxx +++ b/Source/cmPropertyMap.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmPropertyMap.h" #include diff --git a/Source/cmPropertyMap.h b/Source/cmPropertyMap.h index ebae550..1caa4d3 100644 --- a/Source/cmPropertyMap.h +++ b/Source/cmPropertyMap.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQTWrapCPPCommand.cxx b/Source/cmQTWrapCPPCommand.cxx index 58cf514..30ff21a 100644 --- a/Source/cmQTWrapCPPCommand.cxx +++ b/Source/cmQTWrapCPPCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQTWrapCPPCommand.h" #include diff --git a/Source/cmQTWrapCPPCommand.h b/Source/cmQTWrapCPPCommand.h index 28ceb3a..fab4406 100644 --- a/Source/cmQTWrapCPPCommand.h +++ b/Source/cmQTWrapCPPCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index 8b2a42c..692f77b 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQTWrapUICommand.h" #include diff --git a/Source/cmQTWrapUICommand.h b/Source/cmQTWrapUICommand.h index 3f92ea9..886d362 100644 --- a/Source/cmQTWrapUICommand.h +++ b/Source/cmQTWrapUICommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQtAutoGen.cxx b/Source/cmQtAutoGen.cxx index 9b3d613..71fd8de 100644 --- a/Source/cmQtAutoGen.cxx +++ b/Source/cmQtAutoGen.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQtAutoGen.h" #include diff --git a/Source/cmQtAutoGen.h b/Source/cmQtAutoGen.h index 44d30ef..926480f 100644 --- a/Source/cmQtAutoGen.h +++ b/Source/cmQtAutoGen.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQtAutoGenGlobalInitializer.cxx b/Source/cmQtAutoGenGlobalInitializer.cxx index 533a855..7b41d91 100644 --- a/Source/cmQtAutoGenGlobalInitializer.cxx +++ b/Source/cmQtAutoGenGlobalInitializer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQtAutoGenGlobalInitializer.h" #include diff --git a/Source/cmQtAutoGenGlobalInitializer.h b/Source/cmQtAutoGenGlobalInitializer.h index c1c4758..4d3c51b 100644 --- a/Source/cmQtAutoGenGlobalInitializer.h +++ b/Source/cmQtAutoGenGlobalInitializer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQtAutoGenInitializer.cxx b/Source/cmQtAutoGenInitializer.cxx index 9ec29ff..2e42602 100644 --- a/Source/cmQtAutoGenInitializer.cxx +++ b/Source/cmQtAutoGenInitializer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQtAutoGenInitializer.h" #include diff --git a/Source/cmQtAutoGenInitializer.h b/Source/cmQtAutoGenInitializer.h index 4ea4e1f..09015fe 100644 --- a/Source/cmQtAutoGenInitializer.h +++ b/Source/cmQtAutoGenInitializer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQtAutoGenerator.cxx b/Source/cmQtAutoGenerator.cxx index cbd5949..124692a 100644 --- a/Source/cmQtAutoGenerator.cxx +++ b/Source/cmQtAutoGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQtAutoGenerator.h" #include diff --git a/Source/cmQtAutoGenerator.h b/Source/cmQtAutoGenerator.h index 4b15fc7..f8ea90d 100644 --- a/Source/cmQtAutoGenerator.h +++ b/Source/cmQtAutoGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQtAutoMocUic.cxx b/Source/cmQtAutoMocUic.cxx index 653dc86..6d524ef 100644 --- a/Source/cmQtAutoMocUic.cxx +++ b/Source/cmQtAutoMocUic.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQtAutoMocUic.h" #include diff --git a/Source/cmQtAutoMocUic.h b/Source/cmQtAutoMocUic.h index 5cb4ff1..07c73d2 100644 --- a/Source/cmQtAutoMocUic.h +++ b/Source/cmQtAutoMocUic.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmQtAutoRcc.cxx b/Source/cmQtAutoRcc.cxx index 605dad5..db72f92 100644 --- a/Source/cmQtAutoRcc.cxx +++ b/Source/cmQtAutoRcc.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmQtAutoRcc.h" #include diff --git a/Source/cmQtAutoRcc.h b/Source/cmQtAutoRcc.h index 9c0a4e9..1117b05 100644 --- a/Source/cmQtAutoRcc.h +++ b/Source/cmQtAutoRcc.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmRST.cxx b/Source/cmRST.cxx index 3934a29..f743064 100644 --- a/Source/cmRST.cxx +++ b/Source/cmRST.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmRST.h" #include diff --git a/Source/cmRST.h b/Source/cmRST.h index 65a8a71..64fb02c 100644 --- a/Source/cmRST.h +++ b/Source/cmRST.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmRange.h b/Source/cmRange.h index 85cb8ea..a13554e 100644 --- a/Source/cmRange.h +++ b/Source/cmRange.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmRemoveCommand.cxx b/Source/cmRemoveCommand.cxx index 65a2268..7ce0a50 100644 --- a/Source/cmRemoveCommand.cxx +++ b/Source/cmRemoveCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmRemoveCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmRemoveCommand.h b/Source/cmRemoveCommand.h index 37bfd8c..64e214a 100644 --- a/Source/cmRemoveCommand.h +++ b/Source/cmRemoveCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmRemoveDefinitionsCommand.cxx b/Source/cmRemoveDefinitionsCommand.cxx index 339ff9d..1d51bb1 100644 --- a/Source/cmRemoveDefinitionsCommand.cxx +++ b/Source/cmRemoveDefinitionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmRemoveDefinitionsCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmRemoveDefinitionsCommand.h b/Source/cmRemoveDefinitionsCommand.h index 8d0fe18..b205714 100644 --- a/Source/cmRemoveDefinitionsCommand.h +++ b/Source/cmRemoveDefinitionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmReturnCommand.cxx b/Source/cmReturnCommand.cxx index 79caf8c..7e475eb 100644 --- a/Source/cmReturnCommand.cxx +++ b/Source/cmReturnCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmReturnCommand.h" #include diff --git a/Source/cmReturnCommand.h b/Source/cmReturnCommand.h index abae1a4..18997f4 100644 --- a/Source/cmReturnCommand.h +++ b/Source/cmReturnCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmRulePlaceholderExpander.cxx b/Source/cmRulePlaceholderExpander.cxx index 9c3c1ed..9a79489 100644 --- a/Source/cmRulePlaceholderExpander.cxx +++ b/Source/cmRulePlaceholderExpander.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmRulePlaceholderExpander.h" #include diff --git a/Source/cmRulePlaceholderExpander.h b/Source/cmRulePlaceholderExpander.h index df382dd..598a8ed 100644 --- a/Source/cmRulePlaceholderExpander.h +++ b/Source/cmRulePlaceholderExpander.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmRuntimeDependencyArchive.cxx b/Source/cmRuntimeDependencyArchive.cxx index 103f2fc..1ee80b4 100644 --- a/Source/cmRuntimeDependencyArchive.cxx +++ b/Source/cmRuntimeDependencyArchive.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmRuntimeDependencyArchive.h" diff --git a/Source/cmRuntimeDependencyArchive.h b/Source/cmRuntimeDependencyArchive.h index 42d0b76..0349f76 100644 --- a/Source/cmRuntimeDependencyArchive.h +++ b/Source/cmRuntimeDependencyArchive.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmSarifLog.cxx b/Source/cmSarifLog.cxx index b2fbed9..35b67f7 100644 --- a/Source/cmSarifLog.cxx +++ b/Source/cmSarifLog.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSarifLog.h" #include diff --git a/Source/cmSarifLog.h b/Source/cmSarifLog.h index aaf0fc2..efdaf14 100644 --- a/Source/cmSarifLog.h +++ b/Source/cmSarifLog.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmScanDepFormat.cxx b/Source/cmScanDepFormat.cxx index 54f0570..bd38273 100644 --- a/Source/cmScanDepFormat.cxx +++ b/Source/cmScanDepFormat.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmScanDepFormat.h" diff --git a/Source/cmScanDepFormat.h b/Source/cmScanDepFormat.h index dc55bf1..7e8027e 100644 --- a/Source/cmScanDepFormat.h +++ b/Source/cmScanDepFormat.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmScriptGenerator.cxx b/Source/cmScriptGenerator.cxx index a50e39e..b3dff8b 100644 --- a/Source/cmScriptGenerator.cxx +++ b/Source/cmScriptGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmScriptGenerator.h" #include diff --git a/Source/cmScriptGenerator.h b/Source/cmScriptGenerator.h index 305ed83..616817b 100644 --- a/Source/cmScriptGenerator.h +++ b/Source/cmScriptGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSearchPath.cxx b/Source/cmSearchPath.cxx index 58194ff..c1b0469 100644 --- a/Source/cmSearchPath.cxx +++ b/Source/cmSearchPath.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSearchPath.h" #include diff --git a/Source/cmSearchPath.h b/Source/cmSearchPath.h index 6602aa1..20c33d1 100644 --- a/Source/cmSearchPath.h +++ b/Source/cmSearchPath.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSeparateArgumentsCommand.cxx b/Source/cmSeparateArgumentsCommand.cxx index 3576e4f..5540e8f 100644 --- a/Source/cmSeparateArgumentsCommand.cxx +++ b/Source/cmSeparateArgumentsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSeparateArgumentsCommand.h" #include diff --git a/Source/cmSeparateArgumentsCommand.h b/Source/cmSeparateArgumentsCommand.h index d284a40..a24d3a3 100644 --- a/Source/cmSeparateArgumentsCommand.h +++ b/Source/cmSeparateArgumentsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx index c45f3c3..e865bf6 100644 --- a/Source/cmSetCommand.cxx +++ b/Source/cmSetCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSetCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmSetCommand.h b/Source/cmSetCommand.h index 695b185..a3e709a 100644 --- a/Source/cmSetCommand.h +++ b/Source/cmSetCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSetDirectoryPropertiesCommand.cxx b/Source/cmSetDirectoryPropertiesCommand.cxx index a1100e1..cdfd068 100644 --- a/Source/cmSetDirectoryPropertiesCommand.cxx +++ b/Source/cmSetDirectoryPropertiesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSetDirectoryPropertiesCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmSetDirectoryPropertiesCommand.h b/Source/cmSetDirectoryPropertiesCommand.h index f5b6406..293e30e 100644 --- a/Source/cmSetDirectoryPropertiesCommand.h +++ b/Source/cmSetDirectoryPropertiesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSetPropertyCommand.cxx b/Source/cmSetPropertyCommand.cxx index 7d474a1..a243954 100644 --- a/Source/cmSetPropertyCommand.cxx +++ b/Source/cmSetPropertyCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSetPropertyCommand.h" #include diff --git a/Source/cmSetPropertyCommand.h b/Source/cmSetPropertyCommand.h index bc5a5e0..8291257 100644 --- a/Source/cmSetPropertyCommand.h +++ b/Source/cmSetPropertyCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSetSourceFilesPropertiesCommand.cxx b/Source/cmSetSourceFilesPropertiesCommand.cxx index 8f7289d..98911c0 100644 --- a/Source/cmSetSourceFilesPropertiesCommand.cxx +++ b/Source/cmSetSourceFilesPropertiesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSetSourceFilesPropertiesCommand.h" #include diff --git a/Source/cmSetSourceFilesPropertiesCommand.h b/Source/cmSetSourceFilesPropertiesCommand.h index 8f88522..486cbfc 100644 --- a/Source/cmSetSourceFilesPropertiesCommand.h +++ b/Source/cmSetSourceFilesPropertiesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSetTargetPropertiesCommand.cxx b/Source/cmSetTargetPropertiesCommand.cxx index 4148d1d..64be3be 100644 --- a/Source/cmSetTargetPropertiesCommand.cxx +++ b/Source/cmSetTargetPropertiesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSetTargetPropertiesCommand.h" #include diff --git a/Source/cmSetTargetPropertiesCommand.h b/Source/cmSetTargetPropertiesCommand.h index 0c04f31..758c13a 100644 --- a/Source/cmSetTargetPropertiesCommand.h +++ b/Source/cmSetTargetPropertiesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSetTestsPropertiesCommand.cxx b/Source/cmSetTestsPropertiesCommand.cxx index c15f9f3..f2bbbae 100644 --- a/Source/cmSetTestsPropertiesCommand.cxx +++ b/Source/cmSetTestsPropertiesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSetTestsPropertiesCommand.h" #include diff --git a/Source/cmSetTestsPropertiesCommand.h b/Source/cmSetTestsPropertiesCommand.h index b4f1641..3eeef79 100644 --- a/Source/cmSetTestsPropertiesCommand.h +++ b/Source/cmSetTestsPropertiesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSiteNameCommand.cxx b/Source/cmSiteNameCommand.cxx index 61d1c30..91dedf7 100644 --- a/Source/cmSiteNameCommand.cxx +++ b/Source/cmSiteNameCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSiteNameCommand.h" #include "cmsys/RegularExpression.hxx" diff --git a/Source/cmSiteNameCommand.h b/Source/cmSiteNameCommand.h index 432ba37..9960012 100644 --- a/Source/cmSiteNameCommand.h +++ b/Source/cmSiteNameCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx index a30c140..b4090b3 100644 --- a/Source/cmSourceFile.cxx +++ b/Source/cmSourceFile.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSourceFile.h" #include diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index e62d264..89afec1 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSourceFileLocation.cxx b/Source/cmSourceFileLocation.cxx index b7b9770..d8f9d0d 100644 --- a/Source/cmSourceFileLocation.cxx +++ b/Source/cmSourceFileLocation.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSourceFileLocation.h" #include diff --git a/Source/cmSourceFileLocation.h b/Source/cmSourceFileLocation.h index 2420b64..bb3b866 100644 --- a/Source/cmSourceFileLocation.h +++ b/Source/cmSourceFileLocation.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSourceFileLocationKind.h b/Source/cmSourceFileLocationKind.h index 73108f1..af78f48 100644 --- a/Source/cmSourceFileLocationKind.h +++ b/Source/cmSourceFileLocationKind.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once enum class cmSourceFileLocationKind diff --git a/Source/cmSourceGroup.cxx b/Source/cmSourceGroup.cxx index f1609ce..3a3ca59 100644 --- a/Source/cmSourceGroup.cxx +++ b/Source/cmSourceGroup.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSourceGroup.h" #include diff --git a/Source/cmSourceGroup.h b/Source/cmSourceGroup.h index 1baace8..20f052d 100644 --- a/Source/cmSourceGroup.h +++ b/Source/cmSourceGroup.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx index 76d6e6d..aabde88 100644 --- a/Source/cmSourceGroupCommand.cxx +++ b/Source/cmSourceGroupCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSourceGroupCommand.h" #include diff --git a/Source/cmSourceGroupCommand.h b/Source/cmSourceGroupCommand.h index 44e1f8e..e90f229 100644 --- a/Source/cmSourceGroupCommand.h +++ b/Source/cmSourceGroupCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmStandardLevel.h b/Source/cmStandardLevel.h index 86d178b..dbf71b8 100644 --- a/Source/cmStandardLevel.h +++ b/Source/cmStandardLevel.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmStandardLevelResolver.cxx b/Source/cmStandardLevelResolver.cxx index da992fe..1bb865d 100644 --- a/Source/cmStandardLevelResolver.cxx +++ b/Source/cmStandardLevelResolver.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmStandardLevelResolver.h" diff --git a/Source/cmStandardLevelResolver.h b/Source/cmStandardLevelResolver.h index aa85700..1543641 100644 --- a/Source/cmStandardLevelResolver.h +++ b/Source/cmStandardLevelResolver.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmStandardLexer.h b/Source/cmStandardLexer.h index 2722528..fe69a86 100644 --- a/Source/cmStandardLexer.h +++ b/Source/cmStandardLexer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if defined(__linux) diff --git a/Source/cmState.cxx b/Source/cmState.cxx index 139d0e2..6c261f4 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmState.h" #include diff --git a/Source/cmState.h b/Source/cmState.h index ff837bb..fc8f7a7 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmStateDirectory.cxx b/Source/cmStateDirectory.cxx index 176b411..1c69b3b 100644 --- a/Source/cmStateDirectory.cxx +++ b/Source/cmStateDirectory.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmStateDirectory.h" diff --git a/Source/cmStateDirectory.h b/Source/cmStateDirectory.h index caea9ae..49ab440 100644 --- a/Source/cmStateDirectory.h +++ b/Source/cmStateDirectory.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmStatePrivate.h b/Source/cmStatePrivate.h index 8e6c796..65e2111 100644 --- a/Source/cmStatePrivate.h +++ b/Source/cmStatePrivate.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmStateSnapshot.cxx b/Source/cmStateSnapshot.cxx index ec84323..71b7dda 100644 --- a/Source/cmStateSnapshot.cxx +++ b/Source/cmStateSnapshot.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmStateSnapshot.h" diff --git a/Source/cmStateSnapshot.h b/Source/cmStateSnapshot.h index 573a524..866ec0a 100644 --- a/Source/cmStateSnapshot.h +++ b/Source/cmStateSnapshot.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmStateTypes.h b/Source/cmStateTypes.h index 71e6cd3..b3fbc13 100644 --- a/Source/cmStateTypes.h +++ b/Source/cmStateTypes.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Source/cmString.cxx b/Source/cmString.cxx index 151ea0e..2640938 100644 --- a/Source/cmString.cxx +++ b/Source/cmString.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ // NOLINTNEXTLINE(bugprone-reserved-identifier) #define _SCL_SECURE_NO_WARNINGS diff --git a/Source/cmString.hxx b/Source/cmString.hxx index db8586b..3c2b49b 100644 --- a/Source/cmString.hxx +++ b/Source/cmString.hxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmStringAlgorithms.cxx b/Source/cmStringAlgorithms.cxx index d511474..a64bfc8 100644 --- a/Source/cmStringAlgorithms.cxx +++ b/Source/cmStringAlgorithms.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmStringAlgorithms.h" #include diff --git a/Source/cmStringAlgorithms.h b/Source/cmStringAlgorithms.h index 91596c6..3bf6022 100644 --- a/Source/cmStringAlgorithms.h +++ b/Source/cmStringAlgorithms.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index 33930d8..2fad917 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ // NOLINTNEXTLINE(bugprone-reserved-identifier) #define _SCL_SECURE_NO_WARNINGS diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h index 5320ea5..a6c7ad6 100644 --- a/Source/cmStringCommand.h +++ b/Source/cmStringCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmStringReplaceHelper.cxx b/Source/cmStringReplaceHelper.cxx index 0715f0b..c3e44df 100644 --- a/Source/cmStringReplaceHelper.cxx +++ b/Source/cmStringReplaceHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmStringReplaceHelper.h" diff --git a/Source/cmStringReplaceHelper.h b/Source/cmStringReplaceHelper.h index 296b1d8..ffe9983 100644 --- a/Source/cmStringReplaceHelper.h +++ b/Source/cmStringReplaceHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmSubcommandTable.cxx b/Source/cmSubcommandTable.cxx index f6194f8..d1d35d5 100644 --- a/Source/cmSubcommandTable.cxx +++ b/Source/cmSubcommandTable.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSubcommandTable.h" #include diff --git a/Source/cmSubcommandTable.h b/Source/cmSubcommandTable.h index 80d8c6d..cc0a67e 100644 --- a/Source/cmSubcommandTable.h +++ b/Source/cmSubcommandTable.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSubdirCommand.cxx b/Source/cmSubdirCommand.cxx index 47082f1..e4f0384 100644 --- a/Source/cmSubdirCommand.cxx +++ b/Source/cmSubdirCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmSubdirCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmSubdirCommand.h b/Source/cmSubdirCommand.h index 6770874..1fe071b 100644 --- a/Source/cmSubdirCommand.h +++ b/Source/cmSubdirCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSyntheticTargetCache.h b/Source/cmSyntheticTargetCache.h index 22d1533..439f6ec 100644 --- a/Source/cmSyntheticTargetCache.h +++ b/Source/cmSyntheticTargetCache.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 8036358..7d2ac65 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #if !defined(_WIN32) && !defined(__sun) && !defined(__OpenBSD__) // POSIX APIs are needed diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index e2720ca..f7ac20b 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 185f9d8..46ef8ed 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTarget.h" #include diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 9a8edeb..2bddec5 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetCompileDefinitionsCommand.cxx b/Source/cmTargetCompileDefinitionsCommand.cxx index c78591a..95a3db9 100644 --- a/Source/cmTargetCompileDefinitionsCommand.cxx +++ b/Source/cmTargetCompileDefinitionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetCompileDefinitionsCommand.h" #include "cmListFileCache.h" diff --git a/Source/cmTargetCompileDefinitionsCommand.h b/Source/cmTargetCompileDefinitionsCommand.h index 54a20fd..ce6c5ad 100644 --- a/Source/cmTargetCompileDefinitionsCommand.h +++ b/Source/cmTargetCompileDefinitionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetCompileFeaturesCommand.cxx b/Source/cmTargetCompileFeaturesCommand.cxx index fc22181..40c6c30 100644 --- a/Source/cmTargetCompileFeaturesCommand.cxx +++ b/Source/cmTargetCompileFeaturesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetCompileFeaturesCommand.h" #include "cmList.h" diff --git a/Source/cmTargetCompileFeaturesCommand.h b/Source/cmTargetCompileFeaturesCommand.h index 9dbf486..8c9eb16 100644 --- a/Source/cmTargetCompileFeaturesCommand.h +++ b/Source/cmTargetCompileFeaturesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetCompileOptionsCommand.cxx b/Source/cmTargetCompileOptionsCommand.cxx index 6bbe29e..2abcbd1 100644 --- a/Source/cmTargetCompileOptionsCommand.cxx +++ b/Source/cmTargetCompileOptionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetCompileOptionsCommand.h" #include "cmList.h" diff --git a/Source/cmTargetCompileOptionsCommand.h b/Source/cmTargetCompileOptionsCommand.h index 1f7c684..56de699 100644 --- a/Source/cmTargetCompileOptionsCommand.h +++ b/Source/cmTargetCompileOptionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetDepend.h b/Source/cmTargetDepend.h index 4ff5eb4..26fdb8e 100644 --- a/Source/cmTargetDepend.h +++ b/Source/cmTargetDepend.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetExport.h b/Source/cmTargetExport.h index caeb54d..3c46c35 100644 --- a/Source/cmTargetExport.h +++ b/Source/cmTargetExport.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetIncludeDirectoriesCommand.cxx b/Source/cmTargetIncludeDirectoriesCommand.cxx index 96e1359..c28a4ef 100644 --- a/Source/cmTargetIncludeDirectoriesCommand.cxx +++ b/Source/cmTargetIncludeDirectoriesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetIncludeDirectoriesCommand.h" #include diff --git a/Source/cmTargetIncludeDirectoriesCommand.h b/Source/cmTargetIncludeDirectoriesCommand.h index 223da7d..128741d 100644 --- a/Source/cmTargetIncludeDirectoriesCommand.h +++ b/Source/cmTargetIncludeDirectoriesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetLinkDirectoriesCommand.cxx b/Source/cmTargetLinkDirectoriesCommand.cxx index 727f201..227f685 100644 --- a/Source/cmTargetLinkDirectoriesCommand.cxx +++ b/Source/cmTargetLinkDirectoriesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetLinkDirectoriesCommand.h" #include "cmGeneratorExpression.h" diff --git a/Source/cmTargetLinkDirectoriesCommand.h b/Source/cmTargetLinkDirectoriesCommand.h index e305709..0ffe6ae 100644 --- a/Source/cmTargetLinkDirectoriesCommand.h +++ b/Source/cmTargetLinkDirectoriesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetLinkLibrariesCommand.cxx b/Source/cmTargetLinkLibrariesCommand.cxx index 808d185..be9fc8f 100644 --- a/Source/cmTargetLinkLibrariesCommand.cxx +++ b/Source/cmTargetLinkLibrariesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetLinkLibrariesCommand.h" #include diff --git a/Source/cmTargetLinkLibrariesCommand.h b/Source/cmTargetLinkLibrariesCommand.h index bc76f3e..7635d48 100644 --- a/Source/cmTargetLinkLibrariesCommand.h +++ b/Source/cmTargetLinkLibrariesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetLinkLibraryType.h b/Source/cmTargetLinkLibraryType.h index 16ac41a..01945ba 100644 --- a/Source/cmTargetLinkLibraryType.h +++ b/Source/cmTargetLinkLibraryType.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once enum cmTargetLinkLibraryType diff --git a/Source/cmTargetLinkOptionsCommand.cxx b/Source/cmTargetLinkOptionsCommand.cxx index 991be37..89953fc 100644 --- a/Source/cmTargetLinkOptionsCommand.cxx +++ b/Source/cmTargetLinkOptionsCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetLinkOptionsCommand.h" #include "cmList.h" diff --git a/Source/cmTargetLinkOptionsCommand.h b/Source/cmTargetLinkOptionsCommand.h index fbe7d49..7db485e 100644 --- a/Source/cmTargetLinkOptionsCommand.h +++ b/Source/cmTargetLinkOptionsCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetPrecompileHeadersCommand.cxx b/Source/cmTargetPrecompileHeadersCommand.cxx index 7e70605..9f763ae 100644 --- a/Source/cmTargetPrecompileHeadersCommand.cxx +++ b/Source/cmTargetPrecompileHeadersCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetPrecompileHeadersCommand.h" #include diff --git a/Source/cmTargetPrecompileHeadersCommand.h b/Source/cmTargetPrecompileHeadersCommand.h index dd08a6d..7472499 100644 --- a/Source/cmTargetPrecompileHeadersCommand.h +++ b/Source/cmTargetPrecompileHeadersCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetPropCommandBase.cxx b/Source/cmTargetPropCommandBase.cxx index bcf2ba9..9b9a708 100644 --- a/Source/cmTargetPropCommandBase.cxx +++ b/Source/cmTargetPropCommandBase.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetPropCommandBase.h" #include "cmExecutionStatus.h" diff --git a/Source/cmTargetPropCommandBase.h b/Source/cmTargetPropCommandBase.h index d95494c..9c2301f 100644 --- a/Source/cmTargetPropCommandBase.h +++ b/Source/cmTargetPropCommandBase.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetPropertyComputer.cxx b/Source/cmTargetPropertyComputer.cxx index 73b88b5..fc21a16 100644 --- a/Source/cmTargetPropertyComputer.cxx +++ b/Source/cmTargetPropertyComputer.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetPropertyComputer.h" diff --git a/Source/cmTargetPropertyComputer.h b/Source/cmTargetPropertyComputer.h index b327ae8..2daeb48 100644 --- a/Source/cmTargetPropertyComputer.h +++ b/Source/cmTargetPropertyComputer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetSourcesCommand.cxx b/Source/cmTargetSourcesCommand.cxx index 7c06b24..3e88828 100644 --- a/Source/cmTargetSourcesCommand.cxx +++ b/Source/cmTargetSourcesCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetSourcesCommand.h" #include diff --git a/Source/cmTargetSourcesCommand.h b/Source/cmTargetSourcesCommand.h index 306226c..502c2ea 100644 --- a/Source/cmTargetSourcesCommand.h +++ b/Source/cmTargetSourcesCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTargetTraceDependencies.cxx b/Source/cmTargetTraceDependencies.cxx index 50e3c4c..b8f5ac6 100644 --- a/Source/cmTargetTraceDependencies.cxx +++ b/Source/cmTargetTraceDependencies.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTargetTraceDependencies.h" #include diff --git a/Source/cmTargetTraceDependencies.h b/Source/cmTargetTraceDependencies.h index 7e72bcd..319779d 100644 --- a/Source/cmTargetTraceDependencies.h +++ b/Source/cmTargetTraceDependencies.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index 445ea78..1620b46 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTest.h" #include "cmMakefile.h" diff --git a/Source/cmTest.h b/Source/cmTest.h index 8e38e82..0e62d6e 100644 --- a/Source/cmTest.h +++ b/Source/cmTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTestGenerator.cxx b/Source/cmTestGenerator.cxx index 9a52b37..83d798c 100644 --- a/Source/cmTestGenerator.cxx +++ b/Source/cmTestGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTestGenerator.h" #include diff --git a/Source/cmTestGenerator.h b/Source/cmTestGenerator.h index 8690bcb..b728ba3 100644 --- a/Source/cmTestGenerator.h +++ b/Source/cmTestGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTimestamp.cxx b/Source/cmTimestamp.cxx index e690774..d7de091 100644 --- a/Source/cmTimestamp.cxx +++ b/Source/cmTimestamp.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #if !defined(_WIN32) && !defined(__sun) && !defined(__OpenBSD__) // POSIX APIs are needed diff --git a/Source/cmTimestamp.h b/Source/cmTimestamp.h index b013ca3..1057cc9 100644 --- a/Source/cmTimestamp.h +++ b/Source/cmTimestamp.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTransformDepfile.cxx b/Source/cmTransformDepfile.cxx index e0cdf8a..e043a58 100644 --- a/Source/cmTransformDepfile.cxx +++ b/Source/cmTransformDepfile.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTransformDepfile.h" #include diff --git a/Source/cmTransformDepfile.h b/Source/cmTransformDepfile.h index 2724d2b..2626678 100644 --- a/Source/cmTransformDepfile.h +++ b/Source/cmTransformDepfile.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx index ee4fccb..9f42769 100644 --- a/Source/cmTryCompileCommand.cxx +++ b/Source/cmTryCompileCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTryCompileCommand.h" #include diff --git a/Source/cmTryCompileCommand.h b/Source/cmTryCompileCommand.h index 6a3430b..cdab185 100644 --- a/Source/cmTryCompileCommand.h +++ b/Source/cmTryCompileCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx index 9f4858e..b0d52f8 100644 --- a/Source/cmTryRunCommand.cxx +++ b/Source/cmTryRunCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmTryRunCommand.h" #include diff --git a/Source/cmTryRunCommand.h b/Source/cmTryRunCommand.h index 38e3638..6b207d4 100644 --- a/Source/cmTryRunCommand.h +++ b/Source/cmTryRunCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmUVHandlePtr.cxx b/Source/cmUVHandlePtr.cxx index ff069c5..201e804 100644 --- a/Source/cmUVHandlePtr.cxx +++ b/Source/cmUVHandlePtr.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #define cmUVHandlePtr_cxx #include "cmUVHandlePtr.h" diff --git a/Source/cmUVHandlePtr.h b/Source/cmUVHandlePtr.h index 82617f9..6c2260e 100644 --- a/Source/cmUVHandlePtr.h +++ b/Source/cmUVHandlePtr.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmUVProcessChain.cxx b/Source/cmUVProcessChain.cxx index 449efb8..4910653 100644 --- a/Source/cmUVProcessChain.cxx +++ b/Source/cmUVProcessChain.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmUVProcessChain.h" #include diff --git a/Source/cmUVProcessChain.h b/Source/cmUVProcessChain.h index 1871f01..ae71010 100644 --- a/Source/cmUVProcessChain.h +++ b/Source/cmUVProcessChain.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmUVStream.h b/Source/cmUVStream.h index 047c977..5c581ca 100644 --- a/Source/cmUVStream.h +++ b/Source/cmUVStream.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmUVStreambuf.h b/Source/cmUVStreambuf.h index f8f77ec..9baa7bc 100644 --- a/Source/cmUVStreambuf.h +++ b/Source/cmUVStreambuf.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmUnsetCommand.cxx b/Source/cmUnsetCommand.cxx index 3ba95e9..d34627c 100644 --- a/Source/cmUnsetCommand.cxx +++ b/Source/cmUnsetCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmUnsetCommand.h" #include "cmExecutionStatus.h" diff --git a/Source/cmUnsetCommand.h b/Source/cmUnsetCommand.h index 3faa053..f7428f5 100644 --- a/Source/cmUnsetCommand.h +++ b/Source/cmUnsetCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmUtils.hxx b/Source/cmUtils.hxx index 733e72f..2993d25 100644 --- a/Source/cmUtils.hxx +++ b/Source/cmUtils.hxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmsys/SystemTools.hxx" diff --git a/Source/cmUuid.cxx b/Source/cmUuid.cxx index 99f2c34..bc2ff59 100644 --- a/Source/cmUuid.cxx +++ b/Source/cmUuid.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmUuid.h" #include diff --git a/Source/cmUuid.h b/Source/cmUuid.h index 4be48d7..cf51ece 100644 --- a/Source/cmUuid.h +++ b/Source/cmUuid.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVSSetupHelper.cxx b/Source/cmVSSetupHelper.cxx index a488d48..54b301b 100644 --- a/Source/cmVSSetupHelper.cxx +++ b/Source/cmVSSetupHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVSSetupHelper.h" #include diff --git a/Source/cmVSSetupHelper.h b/Source/cmVSSetupHelper.h index bbdaac3..fd01202 100644 --- a/Source/cmVSSetupHelper.h +++ b/Source/cmVSSetupHelper.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #ifndef NOMINMAX diff --git a/Source/cmValue.h b/Source/cmValue.h index bec25f5..21ef188 100644 --- a/Source/cmValue.h +++ b/Source/cmValue.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVariableWatch.cxx b/Source/cmVariableWatch.cxx index 2f1d6f8..5ad00fe 100644 --- a/Source/cmVariableWatch.cxx +++ b/Source/cmVariableWatch.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVariableWatch.h" #include diff --git a/Source/cmVariableWatch.h b/Source/cmVariableWatch.h index c896b58..ffd7192 100644 --- a/Source/cmVariableWatch.h +++ b/Source/cmVariableWatch.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVariableWatchCommand.cxx b/Source/cmVariableWatchCommand.cxx index 51a85fb..f5d47c6 100644 --- a/Source/cmVariableWatchCommand.cxx +++ b/Source/cmVariableWatchCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVariableWatchCommand.h" #include diff --git a/Source/cmVariableWatchCommand.h b/Source/cmVariableWatchCommand.h index 4477cb7..39fb10d 100644 --- a/Source/cmVariableWatchCommand.h +++ b/Source/cmVariableWatchCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVersion.cxx b/Source/cmVersion.cxx index f2bf73e..06c3688 100644 --- a/Source/cmVersion.cxx +++ b/Source/cmVersion.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVersion.h" #include "cmVersionConfig.h" diff --git a/Source/cmVersion.h b/Source/cmVersion.h index 881252e..c3d5b0c 100644 --- a/Source/cmVersion.h +++ b/Source/cmVersion.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cmVersionConfig.h.in b/Source/cmVersionConfig.h.in index 5d52950..7e30b48 100644 --- a/Source/cmVersionConfig.h.in +++ b/Source/cmVersionConfig.h.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #define CMake_VERSION_MAJOR @CMake_VERSION_MAJOR@ diff --git a/Source/cmVersionMacros.h b/Source/cmVersionMacros.h index f33f0df..f89d8e7 100644 --- a/Source/cmVersionMacros.h +++ b/Source/cmVersionMacros.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmVersionConfig.h" diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 57ba964..caa541b 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVisualStudio10TargetGenerator.h" #include diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index 2b3ebe8..162a140 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVisualStudioGeneratorOptions.h b/Source/cmVisualStudioGeneratorOptions.h index 5056deb..935a77b 100644 --- a/Source/cmVisualStudioGeneratorOptions.h +++ b/Source/cmVisualStudioGeneratorOptions.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVisualStudioSlnData.cxx b/Source/cmVisualStudioSlnData.cxx index 75a8544..95e56f8 100644 --- a/Source/cmVisualStudioSlnData.cxx +++ b/Source/cmVisualStudioSlnData.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVisualStudioSlnData.h" #include diff --git a/Source/cmVisualStudioSlnData.h b/Source/cmVisualStudioSlnData.h index d804c89..3ed185b 100644 --- a/Source/cmVisualStudioSlnData.h +++ b/Source/cmVisualStudioSlnData.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVisualStudioSlnParser.cxx b/Source/cmVisualStudioSlnParser.cxx index 67cb4e2..878e877 100644 --- a/Source/cmVisualStudioSlnParser.cxx +++ b/Source/cmVisualStudioSlnParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVisualStudioSlnParser.h" #include diff --git a/Source/cmVisualStudioSlnParser.h b/Source/cmVisualStudioSlnParser.h index e7dd16e..dc0ea42 100644 --- a/Source/cmVisualStudioSlnParser.h +++ b/Source/cmVisualStudioSlnParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVisualStudioWCEPlatformParser.cxx b/Source/cmVisualStudioWCEPlatformParser.cxx index b3b828c..8454c99 100644 --- a/Source/cmVisualStudioWCEPlatformParser.cxx +++ b/Source/cmVisualStudioWCEPlatformParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmVisualStudioWCEPlatformParser.h" #include diff --git a/Source/cmVisualStudioWCEPlatformParser.h b/Source/cmVisualStudioWCEPlatformParser.h index 559d7dd..c0a42a7 100644 --- a/Source/cmVisualStudioWCEPlatformParser.h +++ b/Source/cmVisualStudioWCEPlatformParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmVsProjectType.h b/Source/cmVsProjectType.h index 04053a0..4a84afb 100644 --- a/Source/cmVsProjectType.h +++ b/Source/cmVsProjectType.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmWhileCommand.cxx b/Source/cmWhileCommand.cxx index f10146c..43d8975 100644 --- a/Source/cmWhileCommand.cxx +++ b/Source/cmWhileCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWhileCommand.h" #include diff --git a/Source/cmWhileCommand.h b/Source/cmWhileCommand.h index 5b8f078..2568e17 100644 --- a/Source/cmWhileCommand.h +++ b/Source/cmWhileCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmWindowsRegistry.cxx b/Source/cmWindowsRegistry.cxx index 4eb5f5e..0a0add3 100644 --- a/Source/cmWindowsRegistry.cxx +++ b/Source/cmWindowsRegistry.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep #include "cmWindowsRegistry.h" diff --git a/Source/cmWindowsRegistry.h b/Source/cmWindowsRegistry.h index c8369e5..1b831ac 100644 --- a/Source/cmWindowsRegistry.h +++ b/Source/cmWindowsRegistry.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmWorkerPool.cxx b/Source/cmWorkerPool.cxx index 4a04e33..bf79c86 100644 --- a/Source/cmWorkerPool.cxx +++ b/Source/cmWorkerPool.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWorkerPool.h" #include diff --git a/Source/cmWorkerPool.h b/Source/cmWorkerPool.h index 4e7223b..e8614a4 100644 --- a/Source/cmWorkerPool.h +++ b/Source/cmWorkerPool.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmWorkingDirectory.cxx b/Source/cmWorkingDirectory.cxx index ec10fb1..f00aca9 100644 --- a/Source/cmWorkingDirectory.cxx +++ b/Source/cmWorkingDirectory.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWorkingDirectory.h" #include "cmStringAlgorithms.h" diff --git a/Source/cmWorkingDirectory.h b/Source/cmWorkingDirectory.h index 31e12ad..96caafa 100644 --- a/Source/cmWorkingDirectory.h +++ b/Source/cmWorkingDirectory.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx index 8ed9ea7..f862c51 100644 --- a/Source/cmWriteFileCommand.cxx +++ b/Source/cmWriteFileCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmWriteFileCommand.h" #include "cmsys/FStream.hxx" diff --git a/Source/cmWriteFileCommand.h b/Source/cmWriteFileCommand.h index 0225e4f..262063c 100644 --- a/Source/cmWriteFileCommand.h +++ b/Source/cmWriteFileCommand.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXCOFF.cxx b/Source/cmXCOFF.cxx index c4074d8..39d190b 100644 --- a/Source/cmXCOFF.cxx +++ b/Source/cmXCOFF.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXCOFF.h" #include diff --git a/Source/cmXCOFF.h b/Source/cmXCOFF.h index 4777336..b1a7ef0 100644 --- a/Source/cmXCOFF.h +++ b/Source/cmXCOFF.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXCode21Object.cxx b/Source/cmXCode21Object.cxx index 18cf9d1..74db53d 100644 --- a/Source/cmXCode21Object.cxx +++ b/Source/cmXCode21Object.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXCode21Object.h" #include diff --git a/Source/cmXCode21Object.h b/Source/cmXCode21Object.h index 0c7f22b..5da71f5 100644 --- a/Source/cmXCode21Object.h +++ b/Source/cmXCode21Object.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index d99788d..31b0322 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXCodeObject.h" #include diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h index 410caf4..2904a7c 100644 --- a/Source/cmXCodeObject.h +++ b/Source/cmXCodeObject.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXCodeScheme.cxx b/Source/cmXCodeScheme.cxx index 4c4ce6e..603bf0c 100644 --- a/Source/cmXCodeScheme.cxx +++ b/Source/cmXCodeScheme.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXCodeScheme.h" #include diff --git a/Source/cmXCodeScheme.h b/Source/cmXCodeScheme.h index e397381..783d250 100644 --- a/Source/cmXCodeScheme.h +++ b/Source/cmXCodeScheme.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXMLParser.cxx b/Source/cmXMLParser.cxx index ea3286f..e5ae69f 100644 --- a/Source/cmXMLParser.cxx +++ b/Source/cmXMLParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXMLParser.h" #include diff --git a/Source/cmXMLParser.h b/Source/cmXMLParser.h index 79f7b64..fe12300 100644 --- a/Source/cmXMLParser.h +++ b/Source/cmXMLParser.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXMLSafe.cxx b/Source/cmXMLSafe.cxx index 91a919d..fa4d1f0 100644 --- a/Source/cmXMLSafe.cxx +++ b/Source/cmXMLSafe.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXMLSafe.h" #include diff --git a/Source/cmXMLSafe.h b/Source/cmXMLSafe.h index 68a2073..ae5d35b 100644 --- a/Source/cmXMLSafe.h +++ b/Source/cmXMLSafe.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXMLWriter.cxx b/Source/cmXMLWriter.cxx index 825028a..1457221 100644 --- a/Source/cmXMLWriter.cxx +++ b/Source/cmXMLWriter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXMLWriter.h" #include diff --git a/Source/cmXMLWriter.h b/Source/cmXMLWriter.h index d2d383d..ba4f763 100644 --- a/Source/cmXMLWriter.h +++ b/Source/cmXMLWriter.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmXcFramework.cxx b/Source/cmXcFramework.cxx index 877873a..a133aa4 100644 --- a/Source/cmXcFramework.cxx +++ b/Source/cmXcFramework.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmXcFramework.h" #include diff --git a/Source/cmXcFramework.h b/Source/cmXcFramework.h index b1238a1..a54fb29 100644 --- a/Source/cmXcFramework.h +++ b/Source/cmXcFramework.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cm_codecvt.cxx b/Source/cm_codecvt.cxx index 3a2725a..82c76ed 100644 --- a/Source/cm_codecvt.cxx +++ b/Source/cm_codecvt.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cm_codecvt.hxx" #if defined(_WIN32) diff --git a/Source/cm_codecvt.hxx b/Source/cm_codecvt.hxx index 5b2215a..037fd14 100644 --- a/Source/cm_codecvt.hxx +++ b/Source/cm_codecvt.hxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cm_codecvt_Encoding.hxx b/Source/cm_codecvt_Encoding.hxx index b91ad8f..e90f147 100644 --- a/Source/cm_codecvt_Encoding.hxx +++ b/Source/cm_codecvt_Encoding.hxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once enum class codecvt_Encoding diff --git a/Source/cm_fileno.cxx b/Source/cm_fileno.cxx index a40c5ca..6688140 100644 --- a/Source/cm_fileno.cxx +++ b/Source/cm_fileno.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #if !defined(_POSIX_C_SOURCE) && !defined(_WIN32) && !defined(__sun) && \ !defined(__OpenBSD__) /* POSIX APIs are needed */ diff --git a/Source/cm_fileno.hxx b/Source/cm_fileno.hxx index 3abcdcf..b35456c 100644 --- a/Source/cm_fileno.hxx +++ b/Source/cm_fileno.hxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Source/cm_get_date.c b/Source/cm_get_date.c index 49f5577..700b3e3 100644 --- a/Source/cm_get_date.c +++ b/Source/cm_get_date.c @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cm_get_date.h" // FIXME: This suppresses use of localtime_r because archive_getdate.c diff --git a/Source/cm_get_date.h b/Source/cm_get_date.h index 1431227..9984ede 100644 --- a/Source/cm_get_date.h +++ b/Source/cm_get_date.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include /* NOLINT(modernize-deprecated-headers) */ diff --git a/Source/cm_sys_stat.h b/Source/cm_sys_stat.h index c4e3d84..234298f 100644 --- a/Source/cm_sys_stat.h +++ b/Source/cm_sys_stat.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if defined(_MSC_VER) diff --git a/Source/cm_utf8.c b/Source/cm_utf8.c index 7a80001..9f68d5e 100644 --- a/Source/cm_utf8.c +++ b/Source/cm_utf8.c @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cm_utf8.h" #include diff --git a/Source/cm_utf8.h b/Source/cm_utf8.h index 15d3552..916a439 100644 --- a/Source/cm_utf8.h +++ b/Source/cm_utf8.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #ifdef __cplusplus diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 934f635..df71ed3 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmake.h" #include diff --git a/Source/cmake.h b/Source/cmake.h index 829bb7c..f128a46 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 60b59ad..7c60427 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx index 7f7efdd..559b7c0 100644 --- a/Source/cmcmd.cxx +++ b/Source/cmcmd.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmcmd.h" #include diff --git a/Source/cmcmd.h b/Source/cmcmd.h index f3299f4..f3eeba4 100644 --- a/Source/cmcmd.h +++ b/Source/cmcmd.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Source/ctest.cxx b/Source/ctest.cxx index ad82daa..b25f58b 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeGUI/CMakeGUITest.cxx b/Tests/CMakeGUI/CMakeGUITest.cxx index a3414fd..69855e7 100644 --- a/Tests/CMakeGUI/CMakeGUITest.cxx +++ b/Tests/CMakeGUI/CMakeGUITest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "CMakeGUITest.h" #include "QCMake.h" diff --git a/Tests/CMakeGUI/CMakeGUITest.h b/Tests/CMakeGUI/CMakeGUITest.h index e6293a4..829e608 100644 --- a/Tests/CMakeGUI/CMakeGUITest.h +++ b/Tests/CMakeGUI/CMakeGUITest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Tests/CMakeGUI/CatchShow.cxx b/Tests/CMakeGUI/CatchShow.cxx index aee2d9d..e958126 100644 --- a/Tests/CMakeGUI/CatchShow.cxx +++ b/Tests/CMakeGUI/CatchShow.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "CatchShow.h" #include diff --git a/Tests/CMakeGUI/CatchShow.h b/Tests/CMakeGUI/CatchShow.h index 7d370b6..ca70e4e 100644 --- a/Tests/CMakeGUI/CatchShow.h +++ b/Tests/CMakeGUI/CatchShow.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Tests/CMakeGUI/CatchShowTest.cxx b/Tests/CMakeGUI/CatchShowTest.cxx index acea8ea..0cf7dac 100644 --- a/Tests/CMakeGUI/CatchShowTest.cxx +++ b/Tests/CMakeGUI/CatchShowTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "CatchShowTest.h" #include diff --git a/Tests/CMakeGUI/CatchShowTest.h b/Tests/CMakeGUI/CatchShowTest.h index 6da2163..3e85d6b 100644 --- a/Tests/CMakeGUI/CatchShowTest.h +++ b/Tests/CMakeGUI/CatchShowTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Tests/CMakeGUI/EnvironmentDialogTest.cxx b/Tests/CMakeGUI/EnvironmentDialogTest.cxx index 9ec4996..26fca7d 100644 --- a/Tests/CMakeGUI/EnvironmentDialogTest.cxx +++ b/Tests/CMakeGUI/EnvironmentDialogTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "EnvironmentDialogTest.h" #include diff --git a/Tests/CMakeGUI/EnvironmentDialogTest.h b/Tests/CMakeGUI/EnvironmentDialogTest.h index bcba2c5..0548115 100644 --- a/Tests/CMakeGUI/EnvironmentDialogTest.h +++ b/Tests/CMakeGUI/EnvironmentDialogTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Tests/CMakeGUI/QCMakeCacheModelTest.cxx b/Tests/CMakeGUI/QCMakeCacheModelTest.cxx index 6dbfc3c..4bf6fa5 100644 --- a/Tests/CMakeGUI/QCMakeCacheModelTest.cxx +++ b/Tests/CMakeGUI/QCMakeCacheModelTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakeCacheModelTest.h" #include diff --git a/Tests/CMakeGUI/QCMakeCacheModelTest.h b/Tests/CMakeGUI/QCMakeCacheModelTest.h index e88db94..c014afe 100644 --- a/Tests/CMakeGUI/QCMakeCacheModelTest.h +++ b/Tests/CMakeGUI/QCMakeCacheModelTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMakeCacheView.h" diff --git a/Tests/CMakeGUI/QCMakePresetComboBoxTest.cxx b/Tests/CMakeGUI/QCMakePresetComboBoxTest.cxx index a95d008..84fac16 100644 --- a/Tests/CMakeGUI/QCMakePresetComboBoxTest.cxx +++ b/Tests/CMakeGUI/QCMakePresetComboBoxTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakePresetComboBoxTest.h" #include diff --git a/Tests/CMakeGUI/QCMakePresetComboBoxTest.h b/Tests/CMakeGUI/QCMakePresetComboBoxTest.h index 433adbb..d1e0770 100644 --- a/Tests/CMakeGUI/QCMakePresetComboBoxTest.h +++ b/Tests/CMakeGUI/QCMakePresetComboBoxTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMakePresetComboBox.h" diff --git a/Tests/CMakeGUI/QCMakePresetItemModelTest.cxx b/Tests/CMakeGUI/QCMakePresetItemModelTest.cxx index 97dbb30..5d5401b 100644 --- a/Tests/CMakeGUI/QCMakePresetItemModelTest.cxx +++ b/Tests/CMakeGUI/QCMakePresetItemModelTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakePresetItemModelTest.h" #include diff --git a/Tests/CMakeGUI/QCMakePresetItemModelTest.h b/Tests/CMakeGUI/QCMakePresetItemModelTest.h index ff6efae..ef6c7337 100644 --- a/Tests/CMakeGUI/QCMakePresetItemModelTest.h +++ b/Tests/CMakeGUI/QCMakePresetItemModelTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMakePresetItemModel.h" diff --git a/Tests/CMakeGUI/QCMakePresetTest.cxx b/Tests/CMakeGUI/QCMakePresetTest.cxx index 2081055..4856488 100644 --- a/Tests/CMakeGUI/QCMakePresetTest.cxx +++ b/Tests/CMakeGUI/QCMakePresetTest.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "QCMakePresetTest.h" #include diff --git a/Tests/CMakeGUI/QCMakePresetTest.h b/Tests/CMakeGUI/QCMakePresetTest.h index 5eac88d..650dfc4 100644 --- a/Tests/CMakeGUI/QCMakePresetTest.h +++ b/Tests/CMakeGUI/QCMakePresetTest.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "QCMakePreset.h" diff --git a/Tests/CMakeLib/testAffinity.cxx b/Tests/CMakeLib/testAffinity.cxx index 6c68570..18bd8a9 100644 --- a/Tests/CMakeLib/testAffinity.cxx +++ b/Tests/CMakeLib/testAffinity.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include #include diff --git a/Tests/CMakeLib/testArgumentParser.cxx b/Tests/CMakeLib/testArgumentParser.cxx index d4e2bd2..1bdad59 100644 --- a/Tests/CMakeLib/testArgumentParser.cxx +++ b/Tests/CMakeLib/testArgumentParser.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testAssert.cxx b/Tests/CMakeLib/testAssert.cxx index 2cdc1e2..98a729e 100644 --- a/Tests/CMakeLib/testAssert.cxx +++ b/Tests/CMakeLib/testAssert.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include diff --git a/Tests/CMakeLib/testCMFilesystemPath.cxx b/Tests/CMakeLib/testCMFilesystemPath.cxx index f38deb0..a8d3be8 100644 --- a/Tests/CMakeLib/testCMFilesystemPath.cxx +++ b/Tests/CMakeLib/testCMFilesystemPath.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testCMakePath.cxx b/Tests/CMakeLib/testCMakePath.cxx index d2f6661..1b7ee6c 100644 --- a/Tests/CMakeLib/testCMakePath.cxx +++ b/Tests/CMakeLib/testCMakePath.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Tests/CMakeLib/testCTestResourceGroups.cxx b/Tests/CMakeLib/testCTestResourceGroups.cxx index 659cdd7..acdb50e 100644 --- a/Tests/CMakeLib/testCTestResourceGroups.cxx +++ b/Tests/CMakeLib/testCTestResourceGroups.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testCommon.h b/Tests/CMakeLib/testCommon.h index 6fb6e3f..b7379d5 100644 --- a/Tests/CMakeLib/testCommon.h +++ b/Tests/CMakeLib/testCommon.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Tests/CMakeLib/testConfig.h.in b/Tests/CMakeLib/testConfig.h.in index f57f97e..15bc12f 100644 --- a/Tests/CMakeLib/testConfig.h.in +++ b/Tests/CMakeLib/testConfig.h.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Tests/CMakeLib/testDebugger.h b/Tests/CMakeLib/testDebugger.h index 13ea66a..c27086d 100644 --- a/Tests/CMakeLib/testDebugger.h +++ b/Tests/CMakeLib/testDebugger.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Tests/CMakeLib/testDebuggerAdapter.cxx b/Tests/CMakeLib/testDebuggerAdapter.cxx index 7595c75..c5ad8b3 100644 --- a/Tests/CMakeLib/testDebuggerAdapter.cxx +++ b/Tests/CMakeLib/testDebuggerAdapter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDebuggerAdapterPipe.cxx b/Tests/CMakeLib/testDebuggerAdapterPipe.cxx index 5fbdc12..15dc32b 100644 --- a/Tests/CMakeLib/testDebuggerAdapterPipe.cxx +++ b/Tests/CMakeLib/testDebuggerAdapterPipe.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDebuggerBreakpointManager.cxx b/Tests/CMakeLib/testDebuggerBreakpointManager.cxx index e82251e..e1e86af 100644 --- a/Tests/CMakeLib/testDebuggerBreakpointManager.cxx +++ b/Tests/CMakeLib/testDebuggerBreakpointManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDebuggerNamedPipe.cxx b/Tests/CMakeLib/testDebuggerNamedPipe.cxx index 3eb3283..69c8de2 100644 --- a/Tests/CMakeLib/testDebuggerNamedPipe.cxx +++ b/Tests/CMakeLib/testDebuggerNamedPipe.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDebuggerVariables.cxx b/Tests/CMakeLib/testDebuggerVariables.cxx index ca8bf39..03ceec5 100644 --- a/Tests/CMakeLib/testDebuggerVariables.cxx +++ b/Tests/CMakeLib/testDebuggerVariables.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDebuggerVariablesHelper.cxx b/Tests/CMakeLib/testDebuggerVariablesHelper.cxx index e3dbbce..7359231 100644 --- a/Tests/CMakeLib/testDebuggerVariablesHelper.cxx +++ b/Tests/CMakeLib/testDebuggerVariablesHelper.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDebuggerVariablesManager.cxx b/Tests/CMakeLib/testDebuggerVariablesManager.cxx index a1881c0..bccff2f 100644 --- a/Tests/CMakeLib/testDebuggerVariablesManager.cxx +++ b/Tests/CMakeLib/testDebuggerVariablesManager.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testDocumentationFormatter.cxx b/Tests/CMakeLib/testDocumentationFormatter.cxx index 20df43f..a0324c1 100644 --- a/Tests/CMakeLib/testDocumentationFormatter.cxx +++ b/Tests/CMakeLib/testDocumentationFormatter.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testFindPackageCommand.cxx b/Tests/CMakeLib/testFindPackageCommand.cxx index 30749be..e3148b8 100644 --- a/Tests/CMakeLib/testFindPackageCommand.cxx +++ b/Tests/CMakeLib/testFindPackageCommand.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // IWYU pragma: keep diff --git a/Tests/CMakeLib/testGeneratedFileStream.cxx b/Tests/CMakeLib/testGeneratedFileStream.cxx index ad1c9e5..1c1b694 100644 --- a/Tests/CMakeLib/testGeneratedFileStream.cxx +++ b/Tests/CMakeLib/testGeneratedFileStream.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testList.cxx b/Tests/CMakeLib/testList.cxx index aa1a21e..ef15a6b 100644 --- a/Tests/CMakeLib/testList.cxx +++ b/Tests/CMakeLib/testList.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testPathResolver.cxx b/Tests/CMakeLib/testPathResolver.cxx index 7172274..d79afd9 100644 --- a/Tests/CMakeLib/testPathResolver.cxx +++ b/Tests/CMakeLib/testPathResolver.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // IWYU pragma: keep diff --git a/Tests/CMakeLib/testRST.cxx b/Tests/CMakeLib/testRST.cxx index 77f2a66..930ffd6 100644 --- a/Tests/CMakeLib/testRST.cxx +++ b/Tests/CMakeLib/testRST.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testRange.cxx b/Tests/CMakeLib/testRange.cxx index 64bc3d7..11e95fe 100644 --- a/Tests/CMakeLib/testRange.cxx +++ b/Tests/CMakeLib/testRange.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testString.cxx b/Tests/CMakeLib/testString.cxx index 72b49a2..b796eb7 100644 --- a/Tests/CMakeLib/testString.cxx +++ b/Tests/CMakeLib/testString.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testStringAlgorithms.cxx b/Tests/CMakeLib/testStringAlgorithms.cxx index 4d418b4..8b0eb69 100644 --- a/Tests/CMakeLib/testStringAlgorithms.cxx +++ b/Tests/CMakeLib/testStringAlgorithms.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Tests/CMakeLib/testSystemTools.cxx b/Tests/CMakeLib/testSystemTools.cxx index 3d932a4..3581474 100644 --- a/Tests/CMakeLib/testSystemTools.cxx +++ b/Tests/CMakeLib/testSystemTools.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // IWYU pragma: keep diff --git a/Tests/CMakeLib/testUTF8.cxx b/Tests/CMakeLib/testUTF8.cxx index 093430b..2268ebd 100644 --- a/Tests/CMakeLib/testUTF8.cxx +++ b/Tests/CMakeLib/testUTF8.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/CMakeLib/testUVPatches.cxx b/Tests/CMakeLib/testUVPatches.cxx index e5d137b..f602179 100644 --- a/Tests/CMakeLib/testUVPatches.cxx +++ b/Tests/CMakeLib/testUVPatches.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // IWYU pragma: keep diff --git a/Tests/CMakeLib/testXMLSafe.cxx b/Tests/CMakeLib/testXMLSafe.cxx index 5b37a08..68f6a03 100644 --- a/Tests/CMakeLib/testXMLSafe.cxx +++ b/Tests/CMakeLib/testXMLSafe.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "cmConfigure.h" // IWYU pragma: keep diff --git a/Tests/CheckFortran.cmake b/Tests/CheckFortran.cmake index 0dfeb5a..dcd4a78 100644 --- a/Tests/CheckFortran.cmake +++ b/Tests/CheckFortran.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT DEFINED CMAKE_Fortran_COMPILER) diff --git a/Tests/Fuzzing/xml_parser_fuzzer.cc b/Tests/Fuzzing/xml_parser_fuzzer.cc index ea6cb3d..df8e17f 100644 --- a/Tests/Fuzzing/xml_parser_fuzzer.cc +++ b/Tests/Fuzzing/xml_parser_fuzzer.cc @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt b/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt index 9250709..0821b92 100644 --- a/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt.in b/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt.in index fc24d90..f2fc665 100644 --- a/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt.in +++ b/Tests/GhsMulti/GhsMultiCompilerOptions/CMakeLists.txt.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiCopyFile/CMakeLists.txt b/Tests/GhsMulti/GhsMultiCopyFile/CMakeLists.txt index d6d007d..e474dc6 100644 --- a/Tests/GhsMulti/GhsMultiCopyFile/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiCopyFile/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt b/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt index 93d668b..8b3a7ca 100644 --- a/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt.in b/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt.in index fed946c..7c61869 100644 --- a/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt.in +++ b/Tests/GhsMulti/GhsMultiCustomTarget/CMakeLists.txt.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt b/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt index 2e2871b..4e10aed 100644 --- a/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiDepOrder/exec/CMakeLists.txt b/Tests/GhsMulti/GhsMultiDepOrder/exec/CMakeLists.txt index 85ee805..af3bc9d 100644 --- a/Tests/GhsMulti/GhsMultiDepOrder/exec/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiDepOrder/exec/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiDepOrder/lib/CMakeLists.txt b/Tests/GhsMulti/GhsMultiDepOrder/lib/CMakeLists.txt index ae30fa2..ac403c0 100644 --- a/Tests/GhsMulti/GhsMultiDepOrder/lib/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiDepOrder/lib/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. add_library(lib1 STATIC func1.c lib1.h diff --git a/Tests/GhsMulti/GhsMultiDepOrder/protolib/CMakeLists.txt b/Tests/GhsMulti/GhsMultiDepOrder/protolib/CMakeLists.txt index 8cb6869..ac3ab39 100644 --- a/Tests/GhsMulti/GhsMultiDepOrder/protolib/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiDepOrder/protolib/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiExclude/CMakeLists.txt b/Tests/GhsMulti/GhsMultiExclude/CMakeLists.txt index 575bf50..845ab14 100644 --- a/Tests/GhsMulti/GhsMultiExclude/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiExclude/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiExclude/verify.cmake b/Tests/GhsMulti/GhsMultiExclude/verify.cmake index 99cef63..597924f 100644 --- a/Tests/GhsMulti/GhsMultiExclude/verify.cmake +++ b/Tests/GhsMulti/GhsMultiExclude/verify.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(verify_skipped_tgt name) unset(fileName CACHE) diff --git a/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt b/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt index 24126c8..965706e 100644 --- a/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt b/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt index 6846a98..a41f43d 100644 --- a/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityDD/CMakeLists.txt b/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityDD/CMakeLists.txt index d4cbf04..31fbee1 100644 --- a/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityDD/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityDD/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityMonolith/CMakeLists.txt b/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityMonolith/CMakeLists.txt index 3f2f0eb..2840eca 100644 --- a/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityMonolith/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiIntegrity/GhsMultiIntegrityMonolith/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiInterface/CMakeLists.txt b/Tests/GhsMulti/GhsMultiInterface/CMakeLists.txt index fa0dce0..a316909 100644 --- a/Tests/GhsMulti/GhsMultiInterface/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiInterface/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt b/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt index 2d21bfb..b888c02 100644 --- a/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt.in b/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt.in index 58c2115..47a30c4 100644 --- a/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt.in +++ b/Tests/GhsMulti/GhsMultiLinkTest/CMakeLists.txt.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiLinkTestSub/CMakeLists.txt b/Tests/GhsMulti/GhsMultiLinkTestSub/CMakeLists.txt index 145dac0..2b94893 100644 --- a/Tests/GhsMulti/GhsMultiLinkTestSub/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiLinkTestSub/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiLinkTestSub/sub_exe/CMakeLists.txt b/Tests/GhsMulti/GhsMultiLinkTestSub/sub_exe/CMakeLists.txt index f49e33d..449174d 100644 --- a/Tests/GhsMulti/GhsMultiLinkTestSub/sub_exe/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiLinkTestSub/sub_exe/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiLinkTestSub/sub_lib/CMakeLists.txt b/Tests/GhsMulti/GhsMultiLinkTestSub/sub_lib/CMakeLists.txt index 9039730..09dde7d 100644 --- a/Tests/GhsMulti/GhsMultiLinkTestSub/sub_lib/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiLinkTestSub/sub_lib/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. add_library(lib1 STATIC func2.c func3.c func4.c) target_link_libraries(lib1 lib2) diff --git a/Tests/GhsMulti/GhsMultiMultipleProjects/CMakeLists.txt b/Tests/GhsMulti/GhsMultiMultipleProjects/CMakeLists.txt index 9e077a9..f0c5a65 100644 --- a/Tests/GhsMulti/GhsMultiMultipleProjects/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiMultipleProjects/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiMultipleProjects/sub/CMakeLists.txt b/Tests/GhsMulti/GhsMultiMultipleProjects/sub/CMakeLists.txt index 0d83bc3..c2066a6 100644 --- a/Tests/GhsMulti/GhsMultiMultipleProjects/sub/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiMultipleProjects/sub/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiMultipleProjects/sub2/CMakeLists.txt b/Tests/GhsMulti/GhsMultiMultipleProjects/sub2/CMakeLists.txt index e42e7fb..5ddc130 100644 --- a/Tests/GhsMulti/GhsMultiMultipleProjects/sub2/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiMultipleProjects/sub2/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiMultipleProjects/verify.cmake b/Tests/GhsMulti/GhsMultiMultipleProjects/verify.cmake index b6af935..c92eea2 100644 --- a/Tests/GhsMulti/GhsMultiMultipleProjects/verify.cmake +++ b/Tests/GhsMulti/GhsMultiMultipleProjects/verify.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. function(verify_project_top name) unset(fileName CACHE) diff --git a/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt b/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt index 98668e5c..b75a7b4 100644 --- a/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiObjectLibrary/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiPlatform/CMakeLists.txt b/Tests/GhsMulti/GhsMultiPlatform/CMakeLists.txt index b177887..f2a8c11 100644 --- a/Tests/GhsMulti/GhsMultiPlatform/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiPlatform/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiRenameInstall/CMakeLists.txt b/Tests/GhsMulti/GhsMultiRenameInstall/CMakeLists.txt index b2540d9..3ad42e9 100644 --- a/Tests/GhsMulti/GhsMultiRenameInstall/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiRenameInstall/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiSrcGroups/CMakeLists.txt b/Tests/GhsMulti/GhsMultiSrcGroups/CMakeLists.txt index 93a1afc..126be60 100644 --- a/Tests/GhsMulti/GhsMultiSrcGroups/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiSrcGroups/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/GhsMulti/GhsMultiUnsupportedTargets/CMakeLists.txt b/Tests/GhsMulti/GhsMultiUnsupportedTargets/CMakeLists.txt index f5f3c55..e9aaa08 100644 --- a/Tests/GhsMulti/GhsMultiUnsupportedTargets/CMakeLists.txt +++ b/Tests/GhsMulti/GhsMultiUnsupportedTargets/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.12 FATAL_ERROR) diff --git a/Tests/QtAutogen/Complex/abc.cpp b/Tests/QtAutogen/Complex/abc.cpp index 4c7dc52..c9fd1a7 100644 --- a/Tests/QtAutogen/Complex/abc.cpp +++ b/Tests/QtAutogen/Complex/abc.cpp @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "abc.h" #include diff --git a/Tests/QtAutogen/Complex/abc.h b/Tests/QtAutogen/Complex/abc.h index ec5f411..5a14a17 100644 --- a/Tests/QtAutogen/Complex/abc.h +++ b/Tests/QtAutogen/Complex/abc.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef ABC_H #define ABC_H diff --git a/Tests/QtAutogen/Complex/abc_p.h b/Tests/QtAutogen/Complex/abc_p.h index 1f6102c..e6d565e 100644 --- a/Tests/QtAutogen/Complex/abc_p.h +++ b/Tests/QtAutogen/Complex/abc_p.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef ABC_P_H #define ABC_P_H diff --git a/Tests/QtAutogen/Complex/bar.cpp b/Tests/QtAutogen/Complex/bar.cpp index 734bd7a..f4b2a79 100644 --- a/Tests/QtAutogen/Complex/bar.cpp +++ b/Tests/QtAutogen/Complex/bar.cpp @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "sub/bar.h" #include diff --git a/Tests/QtAutogen/Complex/blub.cpp b/Tests/QtAutogen/Complex/blub.cpp index 1c497e0..d0b53a8 100644 --- a/Tests/QtAutogen/Complex/blub.cpp +++ b/Tests/QtAutogen/Complex/blub.cpp @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "blub.h" #include diff --git a/Tests/QtAutogen/Complex/blub.h b/Tests/QtAutogen/Complex/blub.h index ff79878..c52e2ec 100644 --- a/Tests/QtAutogen/Complex/blub.h +++ b/Tests/QtAutogen/Complex/blub.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef BLUB_H #define BLUB_H diff --git a/Tests/QtAutogen/Complex/foo.cpp b/Tests/QtAutogen/Complex/foo.cpp index f665eee..d99e6c1 100644 --- a/Tests/QtAutogen/Complex/foo.cpp +++ b/Tests/QtAutogen/Complex/foo.cpp @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "foo.h" #include diff --git a/Tests/QtAutogen/Complex/foo.h b/Tests/QtAutogen/Complex/foo.h index 3e03fe6..024f627 100644 --- a/Tests/QtAutogen/Complex/foo.h +++ b/Tests/QtAutogen/Complex/foo.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef FOO_H #define FOO_H diff --git a/Tests/QtAutogen/Complex/sub/bar.h b/Tests/QtAutogen/Complex/sub/bar.h index e4093f6..c8e31a1 100644 --- a/Tests/QtAutogen/Complex/sub/bar.h +++ b/Tests/QtAutogen/Complex/sub/bar.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef BAR_H #define BAR_H diff --git a/Tests/QtAutogen/Complex/xyz.cpp b/Tests/QtAutogen/Complex/xyz.cpp index e46c9d3..37e4a50 100644 --- a/Tests/QtAutogen/Complex/xyz.cpp +++ b/Tests/QtAutogen/Complex/xyz.cpp @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "xyz.h" #include diff --git a/Tests/QtAutogen/Complex/xyz.h b/Tests/QtAutogen/Complex/xyz.h index 8b813fd..1a4a868 100644 --- a/Tests/QtAutogen/Complex/xyz.h +++ b/Tests/QtAutogen/Complex/xyz.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef XYZ_H #define XYZ_H diff --git a/Tests/QtAutogen/Complex/yaf.cpp b/Tests/QtAutogen/Complex/yaf.cpp index 10448c1..eff85cb 100644 --- a/Tests/QtAutogen/Complex/yaf.cpp +++ b/Tests/QtAutogen/Complex/yaf.cpp @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "yaf.h" #include diff --git a/Tests/QtAutogen/Complex/yaf.h b/Tests/QtAutogen/Complex/yaf.h index f271061..d244328 100644 --- a/Tests/QtAutogen/Complex/yaf.h +++ b/Tests/QtAutogen/Complex/yaf.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef YAF_H #define YAF_H diff --git a/Tests/QtAutogen/Complex/yaf_p.h b/Tests/QtAutogen/Complex/yaf_p.h index 48fdd30..07b77b6 100644 --- a/Tests/QtAutogen/Complex/yaf_p.h +++ b/Tests/QtAutogen/Complex/yaf_p.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef YAF_P_H #define YAF_P_H diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 54fc875..2e00a91 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # See adjacent README.rst for documentation of this test infrastructure. diff --git a/Tests/RunCMake/RunCMake.cmake b/Tests/RunCMake/RunCMake.cmake index 0729f1b..dd1b6e1 100644 --- a/Tests/RunCMake/RunCMake.cmake +++ b/Tests/RunCMake/RunCMake.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. foreach( arg diff --git a/Tests/RunCMake/RunCPack.cmake b/Tests/RunCMake/RunCPack.cmake index b21eb26..f00a71e 100644 --- a/Tests/RunCMake/RunCPack.cmake +++ b/Tests/RunCMake/RunCPack.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(RunCMake) diff --git a/Tests/RunCMake/RunCPack/verify.cmake b/Tests/RunCMake/RunCPack/verify.cmake index 26a52bc..f39d20f 100644 --- a/Tests/RunCMake/RunCPack/verify.cmake +++ b/Tests/RunCMake/RunCPack/verify.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(glob) list(TRANSFORM glob PREPEND "${dir}/") diff --git a/Tests/RunCMake/RunCTest.cmake b/Tests/RunCMake/RunCTest.cmake index 87d17f2..243a037 100644 --- a/Tests/RunCMake/RunCTest.cmake +++ b/Tests/RunCMake/RunCTest.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. include(RunCMake) diff --git a/Utilities/CMakeLists.txt b/Utilities/CMakeLists.txt index e377733..e73827a 100644 --- a/Utilities/CMakeLists.txt +++ b/Utilities/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. subdirs(Doxygen) diff --git a/Utilities/ClangTidyModule/CMakeLists.txt b/Utilities/ClangTidyModule/CMakeLists.txt index 582d54a..9679151 100644 --- a/Utilities/ClangTidyModule/CMakeLists.txt +++ b/Utilities/ClangTidyModule/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.13) project(CMakeClangTidyModule C CXX) diff --git a/Utilities/ClangTidyModule/Module.cxx b/Utilities/ClangTidyModule/Module.cxx index 4dd7dcd..3a8ec9e 100644 --- a/Utilities/ClangTidyModule/Module.cxx +++ b/Utilities/ClangTidyModule/Module.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.cxx b/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.cxx index 0f734e3..8265e32 100644 --- a/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.cxx +++ b/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "OstringstreamUseCmstrcatCheck.h" #include diff --git a/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.h b/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.h index fa82307..4541c24 100644 --- a/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.h +++ b/Utilities/ClangTidyModule/OstringstreamUseCmstrcatCheck.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.cxx b/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.cxx index 4bee5e8..4fd9c7f 100644 --- a/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.cxx +++ b/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "StringConcatenationUseCmstrcatCheck.h" #include diff --git a/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.h b/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.h index 9373152..5308120 100644 --- a/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.h +++ b/Utilities/ClangTidyModule/StringConcatenationUseCmstrcatCheck.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.cxx b/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.cxx index 4312755..3ab01ba 100644 --- a/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.cxx +++ b/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "UseBespokeEnumClassCheck.h" #include diff --git a/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.h b/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.h index 24e3fbd..fddf623 100644 --- a/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.h +++ b/Utilities/ClangTidyModule/UseBespokeEnumClassCheck.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/ClangTidyModule/UseCmstrlenCheck.cxx b/Utilities/ClangTidyModule/UseCmstrlenCheck.cxx index c42d899..2f06078 100644 --- a/Utilities/ClangTidyModule/UseCmstrlenCheck.cxx +++ b/Utilities/ClangTidyModule/UseCmstrlenCheck.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "UseCmstrlenCheck.h" #include diff --git a/Utilities/ClangTidyModule/UseCmstrlenCheck.h b/Utilities/ClangTidyModule/UseCmstrlenCheck.h index a9bf8ce..e4cd1bb 100644 --- a/Utilities/ClangTidyModule/UseCmstrlenCheck.h +++ b/Utilities/ClangTidyModule/UseCmstrlenCheck.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/ClangTidyModule/UseCmsysFstreamCheck.cxx b/Utilities/ClangTidyModule/UseCmsysFstreamCheck.cxx index 73c5817..5f28054 100644 --- a/Utilities/ClangTidyModule/UseCmsysFstreamCheck.cxx +++ b/Utilities/ClangTidyModule/UseCmsysFstreamCheck.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include "UseCmsysFstreamCheck.h" #include diff --git a/Utilities/ClangTidyModule/UseCmsysFstreamCheck.h b/Utilities/ClangTidyModule/UseCmsysFstreamCheck.h index 851bc91..eb021bd 100644 --- a/Utilities/ClangTidyModule/UseCmsysFstreamCheck.h +++ b/Utilities/ClangTidyModule/UseCmsysFstreamCheck.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/ClangTidyModule/UsePragmaOnceCheck.cxx b/Utilities/ClangTidyModule/UsePragmaOnceCheck.cxx index 34c1fc7..ac6a9f8 100644 --- a/Utilities/ClangTidyModule/UsePragmaOnceCheck.cxx +++ b/Utilities/ClangTidyModule/UsePragmaOnceCheck.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This code was originally taken from part of the Clang-Tidy LLVM project and * modified for use with CMake under the following original license: */ diff --git a/Utilities/ClangTidyModule/UsePragmaOnceCheck.h b/Utilities/ClangTidyModule/UsePragmaOnceCheck.h index dd2b7fb..c2a896e 100644 --- a/Utilities/ClangTidyModule/UsePragmaOnceCheck.h +++ b/Utilities/ClangTidyModule/UsePragmaOnceCheck.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This code was originally taken from part of the Clang-Tidy LLVM project and * modified for use with CMake under the following original license: */ diff --git a/Utilities/Doxygen/CMakeLists.txt b/Utilities/Doxygen/CMakeLists.txt index 64f9a3f..a9f07db 100644 --- a/Utilities/Doxygen/CMakeLists.txt +++ b/Utilities/Doxygen/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT CMake_SOURCE_DIR) set(CMakeDeveloperReference_STANDALONE 1) diff --git a/Utilities/Git/commit-msg b/Utilities/Git/commit-msg index 348c3ea..c7b8127 100755 --- a/Utilities/Git/commit-msg +++ b/Utilities/Git/commit-msg @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. die() { echo 'commit-msg hook failure' 1>&2 diff --git a/Utilities/Git/pre-commit b/Utilities/Git/pre-commit index b63ae5e..aa4bc8c 100755 --- a/Utilities/Git/pre-commit +++ b/Utilities/Git/pre-commit @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. die() { echo 'pre-commit hook failure' 1>&2 diff --git a/Utilities/Git/prepare-commit-msg b/Utilities/Git/prepare-commit-msg index 511472e..3ecb027 100755 --- a/Utilities/Git/prepare-commit-msg +++ b/Utilities/Git/prepare-commit-msg @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # This is a placeholder for future prepare-commit-msg hooks. exit 0 diff --git a/Utilities/Release/linux/aarch64/Dockerfile b/Utilities/Release/linux/aarch64/Dockerfile index e232c01..937cd7f 100644 --- a/Utilities/Release/linux/aarch64/Dockerfile +++ b/Utilities/Release/linux/aarch64/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce an image containing a portable CMake binary package for Linux/aarch64. # Build using the CMake source directory as the build context. diff --git a/Utilities/Release/linux/aarch64/base/Dockerfile b/Utilities/Release/linux/aarch64/base/Dockerfile index b9c683e..bb9f198 100644 --- a/Utilities/Release/linux/aarch64/base/Dockerfile +++ b/Utilities/Release/linux/aarch64/base/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce a base image with a build environment for portable CMake binaries. # Build using the directory containing this file as its own build context. diff --git a/Utilities/Release/linux/aarch64/deps/Dockerfile b/Utilities/Release/linux/aarch64/deps/Dockerfile index 8d0f6fd..d881f0d 100644 --- a/Utilities/Release/linux/aarch64/deps/Dockerfile +++ b/Utilities/Release/linux/aarch64/deps/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce an image with custom-built dependencies for portable CMake binaries. # Build using the directory containing this file as its own build context. diff --git a/Utilities/Release/linux/aarch64/test/Dockerfile b/Utilities/Release/linux/aarch64/test/Dockerfile index 03674fb..4c2862e 100644 --- a/Utilities/Release/linux/aarch64/test/Dockerfile +++ b/Utilities/Release/linux/aarch64/test/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce a base image with a test environment for packaged CMake binaries. # Build using the directory containing this file as its own build context. diff --git a/Utilities/Release/linux/aarch64/test/test-make.bash b/Utilities/Release/linux/aarch64/test/test-make.bash index 10d30c3..12c9f2c 100644 --- a/Utilities/Release/linux/aarch64/test/test-make.bash +++ b/Utilities/Release/linux/aarch64/test/test-make.bash @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set -e set -x diff --git a/Utilities/Release/linux/aarch64/test/test-ninja.bash b/Utilities/Release/linux/aarch64/test/test-ninja.bash index fe39e2e..8417952 100644 --- a/Utilities/Release/linux/aarch64/test/test-ninja.bash +++ b/Utilities/Release/linux/aarch64/test/test-ninja.bash @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set -e set -x diff --git a/Utilities/Release/linux/x86_64/Dockerfile b/Utilities/Release/linux/x86_64/Dockerfile index 71c8776..8d65108 100644 --- a/Utilities/Release/linux/x86_64/Dockerfile +++ b/Utilities/Release/linux/x86_64/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce an image containing a portable CMake binary package for Linux/x86_64. # Build using the CMake source directory as the build context. diff --git a/Utilities/Release/linux/x86_64/base/Dockerfile b/Utilities/Release/linux/x86_64/base/Dockerfile index 5df138e..72ff2cc 100644 --- a/Utilities/Release/linux/x86_64/base/Dockerfile +++ b/Utilities/Release/linux/x86_64/base/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce a base image with a build environment for portable CMake binaries. # Build using the directory containing this file as its own build context. diff --git a/Utilities/Release/linux/x86_64/deps/Dockerfile b/Utilities/Release/linux/x86_64/deps/Dockerfile index b8bd164..4bbf5cc 100644 --- a/Utilities/Release/linux/x86_64/deps/Dockerfile +++ b/Utilities/Release/linux/x86_64/deps/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce an image with custom-built dependencies for portable CMake binaries. # Build using the directory containing this file as its own build context. diff --git a/Utilities/Release/linux/x86_64/test/Dockerfile b/Utilities/Release/linux/x86_64/test/Dockerfile index e6c195e..add0245 100644 --- a/Utilities/Release/linux/x86_64/test/Dockerfile +++ b/Utilities/Release/linux/x86_64/test/Dockerfile @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Produce a base image with a test environment for packaged CMake binaries. # Build using the directory containing this file as its own build context. diff --git a/Utilities/Release/linux/x86_64/test/test-make.bash b/Utilities/Release/linux/x86_64/test/test-make.bash index 10d30c3..12c9f2c 100644 --- a/Utilities/Release/linux/x86_64/test/test-make.bash +++ b/Utilities/Release/linux/x86_64/test/test-make.bash @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set -e set -x diff --git a/Utilities/Release/linux/x86_64/test/test-ninja.bash b/Utilities/Release/linux/x86_64/test/test-ninja.bash index fe39e2e..8417952 100644 --- a/Utilities/Release/linux/x86_64/test/test-ninja.bash +++ b/Utilities/Release/linux/x86_64/test/test-ninja.bash @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. set -e set -x diff --git a/Utilities/Release/win/qt-5.15.10-win-x86-msvc.ps1 b/Utilities/Release/win/qt-5.15.10-win-x86-msvc.ps1 index e1d9ad1..37e2734 100644 --- a/Utilities/Release/win/qt-5.15.10-win-x86-msvc.ps1 +++ b/Utilities/Release/win/qt-5.15.10-win-x86-msvc.ps1 @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Run this script on a Windows host to generate Qt binaries. # Set the PATH environment variable to contain the locations of cmake and git. diff --git a/Utilities/Release/win/qtbase-6.3.0-win-msvc.cmake b/Utilities/Release/win/qtbase-6.3.0-win-msvc.cmake index ae3651d..a895ca1 100644 --- a/Utilities/Release/win/qtbase-6.3.0-win-msvc.cmake +++ b/Utilities/Release/win/qtbase-6.3.0-win-msvc.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Run this script in a Visual Studio Command Prompt to generate Qt binaries. diff --git a/Utilities/Release/win/sign-package.ps1 b/Utilities/Release/win/sign-package.ps1 index fdaff14..7465c21 100644 --- a/Utilities/Release/win/sign-package.ps1 +++ b/Utilities/Release/win/sign-package.ps1 @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Run this script on a Windows host in a CMake single-config build tree. diff --git a/Utilities/Scripts/BoostScanDeps.cmake b/Utilities/Scripts/BoostScanDeps.cmake index 14c7f3c..45f3746 100644 --- a/Utilities/Scripts/BoostScanDeps.cmake +++ b/Utilities/Scripts/BoostScanDeps.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Scan the Boost headers and determine the library dependencies. Note # that this script only scans one Boost version at once; invoke once diff --git a/Utilities/Sphinx/CMakeLists.txt b/Utilities/Sphinx/CMakeLists.txt index e7a53ab..1e60c10 100644 --- a/Utilities/Sphinx/CMakeLists.txt +++ b/Utilities/Sphinx/CMakeLists.txt @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. if(NOT CMake_SOURCE_DIR) set(CMakeHelp_STANDALONE 1) diff --git a/Utilities/Sphinx/CTestConfig.cmake b/Utilities/Sphinx/CTestConfig.cmake index e5f4260..294cd18 100644 --- a/Utilities/Sphinx/CTestConfig.cmake +++ b/Utilities/Sphinx/CTestConfig.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # If changing this file, also update CTestConfig.cmake diff --git a/Utilities/Sphinx/cmake.py b/Utilities/Sphinx/cmake.py index 66954df..cfe114a 100644 --- a/Utilities/Sphinx/cmake.py +++ b/Utilities/Sphinx/cmake.py @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # BEGIN imports diff --git a/Utilities/Sphinx/conf.py.in b/Utilities/Sphinx/conf.py.in index d6df5a1..be33bf1 100644 --- a/Utilities/Sphinx/conf.py.in +++ b/Utilities/Sphinx/conf.py.in @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. import sys import os diff --git a/Utilities/cm3p/Setup.Configuration.h b/Utilities/cm3p/Setup.Configuration.h index 9f4190e..3abcc0b 100644 --- a/Utilities/cm3p/Setup.Configuration.h +++ b/Utilities/cm3p/Setup.Configuration.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/cm3p/archive.h b/Utilities/cm3p/archive.h index a775400..2b92eb9 100644 --- a/Utilities/cm3p/archive.h +++ b/Utilities/cm3p/archive.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the libarchive configured for CMake. */ diff --git a/Utilities/cm3p/archive_entry.h b/Utilities/cm3p/archive_entry.h index 0f8376c..2bd682c 100644 --- a/Utilities/cm3p/archive_entry.h +++ b/Utilities/cm3p/archive_entry.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the libarchive configured for CMake. */ diff --git a/Utilities/cm3p/bzlib.h b/Utilities/cm3p/bzlib.h index c0eef03..98fccb1 100644 --- a/Utilities/cm3p/bzlib.h +++ b/Utilities/cm3p/bzlib.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the bzip2 library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/dap.h b/Utilities/cm3p/cppdap/dap.h index 84fd332..72f4d26 100644 --- a/Utilities/cm3p/cppdap/dap.h +++ b/Utilities/cm3p/cppdap/dap.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/future.h b/Utilities/cm3p/cppdap/future.h index ad45b6b..c11d672 100644 --- a/Utilities/cm3p/cppdap/future.h +++ b/Utilities/cm3p/cppdap/future.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/io.h b/Utilities/cm3p/cppdap/io.h index e0401f8..7bc6df5 100644 --- a/Utilities/cm3p/cppdap/io.h +++ b/Utilities/cm3p/cppdap/io.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/optional.h b/Utilities/cm3p/cppdap/optional.h index 777184d..b74b559 100644 --- a/Utilities/cm3p/cppdap/optional.h +++ b/Utilities/cm3p/cppdap/optional.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/protocol.h b/Utilities/cm3p/cppdap/protocol.h index da70369..5b17464 100644 --- a/Utilities/cm3p/cppdap/protocol.h +++ b/Utilities/cm3p/cppdap/protocol.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/session.h b/Utilities/cm3p/cppdap/session.h index d4468e7..77196c4 100644 --- a/Utilities/cm3p/cppdap/session.h +++ b/Utilities/cm3p/cppdap/session.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/cppdap/types.h b/Utilities/cm3p/cppdap/types.h index 3fc2a88..f3ceff5 100644 --- a/Utilities/cm3p/cppdap/types.h +++ b/Utilities/cm3p/cppdap/types.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the cppdap library configured for CMake. */ diff --git a/Utilities/cm3p/curl/curl.h b/Utilities/cm3p/curl/curl.h index 272db8d..7b78dcb 100644 --- a/Utilities/cm3p/curl/curl.h +++ b/Utilities/cm3p/curl/curl.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the curl library configured for CMake. */ diff --git a/Utilities/cm3p/expat.h b/Utilities/cm3p/expat.h index bcf6195..251db45 100644 --- a/Utilities/cm3p/expat.h +++ b/Utilities/cm3p/expat.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the expat library configured for CMake. */ diff --git a/Utilities/cm3p/json/forwards.h b/Utilities/cm3p/json/forwards.h index c55c5c1..84fa664 100644 --- a/Utilities/cm3p/json/forwards.h +++ b/Utilities/cm3p/json/forwards.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the jsoncpp library configured for CMake. */ diff --git a/Utilities/cm3p/json/json.h b/Utilities/cm3p/json/json.h index 5671e91..c265693 100644 --- a/Utilities/cm3p/json/json.h +++ b/Utilities/cm3p/json/json.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the jsoncpp library configured for CMake. */ diff --git a/Utilities/cm3p/json/reader.h b/Utilities/cm3p/json/reader.h index 9fa8d2d..a4d1572 100644 --- a/Utilities/cm3p/json/reader.h +++ b/Utilities/cm3p/json/reader.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the jsoncpp library configured for CMake. */ diff --git a/Utilities/cm3p/json/value.h b/Utilities/cm3p/json/value.h index fc3b5f4..a2df097 100644 --- a/Utilities/cm3p/json/value.h +++ b/Utilities/cm3p/json/value.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the jsoncpp library configured for CMake. */ diff --git a/Utilities/cm3p/json/version.h b/Utilities/cm3p/json/version.h index 49f83fa..13b8b01 100644 --- a/Utilities/cm3p/json/version.h +++ b/Utilities/cm3p/json/version.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the jsoncpp library configured for CMake. */ diff --git a/Utilities/cm3p/json/writer.h b/Utilities/cm3p/json/writer.h index 7ee1e43..a0a43f3 100644 --- a/Utilities/cm3p/json/writer.h +++ b/Utilities/cm3p/json/writer.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the jsoncpp library configured for CMake. */ diff --git a/Utilities/cm3p/kwiml/abi.h b/Utilities/cm3p/kwiml/abi.h index 8d5189a..760ae67 100644 --- a/Utilities/cm3p/kwiml/abi.h +++ b/Utilities/cm3p/kwiml/abi.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the KWIML library configured for CMake. */ diff --git a/Utilities/cm3p/kwiml/int.h b/Utilities/cm3p/kwiml/int.h index 2669df8..b716b56 100644 --- a/Utilities/cm3p/kwiml/int.h +++ b/Utilities/cm3p/kwiml/int.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the KWIML library configured for CMake. */ diff --git a/Utilities/cm3p/lzma.h b/Utilities/cm3p/lzma.h index 7842f6b..4820aeb 100644 --- a/Utilities/cm3p/lzma.h +++ b/Utilities/cm3p/lzma.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the liblzma configured for CMake. */ diff --git a/Utilities/cm3p/rhash.h b/Utilities/cm3p/rhash.h index 5828557..8ce7075 100644 --- a/Utilities/cm3p/rhash.h +++ b/Utilities/cm3p/rhash.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the LibRHash library configured for CMake. */ diff --git a/Utilities/cm3p/uv.h b/Utilities/cm3p/uv.h index 36a86b6..83f9d8e 100644 --- a/Utilities/cm3p/uv.h +++ b/Utilities/cm3p/uv.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the libuv library configured for CMake. */ diff --git a/Utilities/cm3p/zlib.h b/Utilities/cm3p/zlib.h index 6b82aa2..635580c 100644 --- a/Utilities/cm3p/zlib.h +++ b/Utilities/cm3p/zlib.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the zlib library configured for CMake. */ diff --git a/Utilities/cm3p/zstd.h b/Utilities/cm3p/zstd.h index 51972de..171a754 100644 --- a/Utilities/cm3p/zstd.h +++ b/Utilities/cm3p/zstd.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Use the libzstd configured for CMake. */ diff --git a/Utilities/cmThirdParty.h.in b/Utilities/cmThirdParty.h.in index da325b1..fa3c7ed 100644 --- a/Utilities/cmThirdParty.h.in +++ b/Utilities/cmThirdParty.h.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Whether CMake is using its own utility libraries. */ diff --git a/Utilities/cmThirdPartyChecks.cmake b/Utilities/cmThirdPartyChecks.cmake index fa3d8b6..71ad523 100644 --- a/Utilities/cmThirdPartyChecks.cmake +++ b/Utilities/cmThirdPartyChecks.cmake @@ -1,5 +1,5 @@ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. # Hard-code third-party try_compile checks where we know the answer. diff --git a/Utilities/cmllpkgc/llpkgc.c b/Utilities/cmllpkgc/llpkgc.c index 33c9043..fdb22b5 100644 --- a/Utilities/cmllpkgc/llpkgc.c +++ b/Utilities/cmllpkgc/llpkgc.c @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include #include diff --git a/Utilities/cmllpkgc/llpkgc.h b/Utilities/cmllpkgc/llpkgc.h index b7d0724..7ab0fe9 100644 --- a/Utilities/cmllpkgc/llpkgc.h +++ b/Utilities/cmllpkgc/llpkgc.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #ifndef INCLUDE_LLPKGC_API_H_ #define INCLUDE_LLPKGC_API_H_ diff --git a/Utilities/cmllpkgc/llpkgc__internal.c b/Utilities/cmllpkgc/llpkgc__internal.c index 2eaba12..9fa5856 100644 --- a/Utilities/cmllpkgc/llpkgc__internal.c +++ b/Utilities/cmllpkgc/llpkgc__internal.c @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This code was generated by llpkgc, do not edit it by hand See: https://gitlab.kitware.com/utils/llpkgc */ diff --git a/Utilities/cmllpkgc/llpkgc__internal.h b/Utilities/cmllpkgc/llpkgc__internal.h index 34ec1d2..1488b95 100644 --- a/Utilities/cmllpkgc/llpkgc__internal.h +++ b/Utilities/cmllpkgc/llpkgc__internal.h @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ /* This code was generated by llpkgc, do not edit it by hand See: https://gitlab.kitware.com/utils/llpkgc */ diff --git a/Utilities/std/cm/algorithm b/Utilities/std/cm/algorithm index 93fe224..107bf85 100644 --- a/Utilities/std/cm/algorithm +++ b/Utilities/std/cm/algorithm @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/array b/Utilities/std/cm/array index f344ee7..4e3a29d 100644 --- a/Utilities/std/cm/array +++ b/Utilities/std/cm/array @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/bits/container_helpers.hxx b/Utilities/std/cm/bits/container_helpers.hxx index 42e2e84..15307aa 100644 --- a/Utilities/std/cm/bits/container_helpers.hxx +++ b/Utilities/std/cm/bits/container_helpers.hxx @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Utilities/std/cm/bits/erase_if.hxx b/Utilities/std/cm/bits/erase_if.hxx index 354b0c2..ced6107 100644 --- a/Utilities/std/cm/bits/erase_if.hxx +++ b/Utilities/std/cm/bits/erase_if.hxx @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once diff --git a/Utilities/std/cm/bits/fs_path.cxx b/Utilities/std/cm/bits/fs_path.cxx index f64811a..b552308 100644 --- a/Utilities/std/cm/bits/fs_path.cxx +++ b/Utilities/std/cm/bits/fs_path.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // IWYU pragma: associated diff --git a/Utilities/std/cm/bits/string_view.cxx b/Utilities/std/cm/bits/string_view.cxx index c0f8352..bd5fb60 100644 --- a/Utilities/std/cm/bits/string_view.cxx +++ b/Utilities/std/cm/bits/string_view.cxx @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #include // IWYU pragma: associated diff --git a/Utilities/std/cm/deque b/Utilities/std/cm/deque index cae3e86..54d186f 100644 --- a/Utilities/std/cm/deque +++ b/Utilities/std/cm/deque @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cm/filesystem b/Utilities/std/cm/filesystem index c56f71c..81edd71 100644 --- a/Utilities/std/cm/filesystem +++ b/Utilities/std/cm/filesystem @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmSTL.hxx" // IWYU pragma: keep diff --git a/Utilities/std/cm/forward_list b/Utilities/std/cm/forward_list index 3397a09..ba7c536 100644 --- a/Utilities/std/cm/forward_list +++ b/Utilities/std/cm/forward_list @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/iomanip b/Utilities/std/cm/iomanip index 3e5d4c8..0eda611 100644 --- a/Utilities/std/cm/iomanip +++ b/Utilities/std/cm/iomanip @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/iterator b/Utilities/std/cm/iterator index 3bfd947..080cf29 100644 --- a/Utilities/std/cm/iterator +++ b/Utilities/std/cm/iterator @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/list b/Utilities/std/cm/list index b17752c..5983f61 100644 --- a/Utilities/std/cm/list +++ b/Utilities/std/cm/list @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/map b/Utilities/std/cm/map index 4270d78..a2de211 100644 --- a/Utilities/std/cm/map +++ b/Utilities/std/cm/map @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/memory b/Utilities/std/cm/memory index 005e6e2..7ed1596 100644 --- a/Utilities/std/cm/memory +++ b/Utilities/std/cm/memory @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include "cmSTL.hxx" // IWYU pragma: keep diff --git a/Utilities/std/cm/optional b/Utilities/std/cm/optional index c9b6373..1577fa0 100644 --- a/Utilities/std/cm/optional +++ b/Utilities/std/cm/optional @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if __cplusplus >= 201703L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) diff --git a/Utilities/std/cm/set b/Utilities/std/cm/set index 70e2c49..018cc3c 100644 --- a/Utilities/std/cm/set +++ b/Utilities/std/cm/set @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/shared_mutex b/Utilities/std/cm/shared_mutex index a1204fa..b0544a5 100644 --- a/Utilities/std/cm/shared_mutex +++ b/Utilities/std/cm/shared_mutex @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if __cplusplus >= 201402L || defined(_MSVC_LANG) && _MSVC_LANG >= 201402L diff --git a/Utilities/std/cm/string b/Utilities/std/cm/string index 90ef39d..e92a56a 100644 --- a/Utilities/std/cm/string +++ b/Utilities/std/cm/string @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cm/string_view b/Utilities/std/cm/string_view index d5c59ab..05618bf 100644 --- a/Utilities/std/cm/string_view +++ b/Utilities/std/cm/string_view @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if __cplusplus >= 201703L || defined(_MSVC_LANG) && _MSVC_LANG >= 201703L diff --git a/Utilities/std/cm/type_traits b/Utilities/std/cm/type_traits index b0ee27a..6bb6b5c 100644 --- a/Utilities/std/cm/type_traits +++ b/Utilities/std/cm/type_traits @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/unordered_map b/Utilities/std/cm/unordered_map index 0b085f3..5c30bd8 100644 --- a/Utilities/std/cm/unordered_map +++ b/Utilities/std/cm/unordered_map @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/unordered_set b/Utilities/std/cm/unordered_set index 0593051..acaa3a8 100644 --- a/Utilities/std/cm/unordered_set +++ b/Utilities/std/cm/unordered_set @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include // IWYU pragma: export diff --git a/Utilities/std/cm/utility b/Utilities/std/cm/utility index c257fc8..a81a99a 100644 --- a/Utilities/std/cm/utility +++ b/Utilities/std/cm/utility @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #if __cplusplus >= 201703L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) diff --git a/Utilities/std/cm/vector b/Utilities/std/cm/vector index 45cbc38..5f6dd3d 100644 --- a/Utilities/std/cm/vector +++ b/Utilities/std/cm/vector @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cmSTL.hxx.in b/Utilities/std/cmSTL.hxx.in index 5e94864..65d6312 100644 --- a/Utilities/std/cmSTL.hxx.in +++ b/Utilities/std/cmSTL.hxx.in @@ -1,5 +1,5 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once /* Whether CMake is using its own STL implementation. */ diff --git a/Utilities/std/cmext/algorithm b/Utilities/std/cmext/algorithm index f99e70f..cc85b0a 100644 --- a/Utilities/std/cmext/algorithm +++ b/Utilities/std/cmext/algorithm @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cmext/enum_set b/Utilities/std/cmext/enum_set index f1d615a..ca53a36 100644 --- a/Utilities/std/cmext/enum_set +++ b/Utilities/std/cmext/enum_set @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cmext/iterator b/Utilities/std/cmext/iterator index 8725cb3..ad03cbc 100644 --- a/Utilities/std/cmext/iterator +++ b/Utilities/std/cmext/iterator @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cmext/memory b/Utilities/std/cmext/memory index 3681d97..2a7abe5 100644 --- a/Utilities/std/cmext/memory +++ b/Utilities/std/cmext/memory @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cmext/string_view b/Utilities/std/cmext/string_view index 0a498e6..29a1cf9 100644 --- a/Utilities/std/cmext/string_view +++ b/Utilities/std/cmext/string_view @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/Utilities/std/cmext/type_traits b/Utilities/std/cmext/type_traits index 57e1e01..07fa448 100644 --- a/Utilities/std/cmext/type_traits +++ b/Utilities/std/cmext/type_traits @@ -2,7 +2,7 @@ // vim: set ft=cpp: /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ + file LICENSE.rst or https://cmake.org/licensing for details. */ #pragma once #include diff --git a/bootstrap b/bootstrap index e69f1eb..793f245 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #!/bin/sh # Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. +# file LICENSE.rst or https://cmake.org/licensing for details. die() { echo "$@" 1>&2 ; exit 1 -- cgit v0.12 From 1fd8a2be4d0455d30cacff778cf13bfa358f82b0 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 21:15:21 -0500 Subject: LICENSE: Clarify role of copyright in contributions --- LICENSE.rst | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/LICENSE.rst b/LICENSE.rst index b7271ba..a40aa86 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -116,10 +116,15 @@ See version control history for details of individual contributions. Copyright ========= -The above copyright and license notice applies to distributions of -CMake in source and binary form. Third-party software packages supplied -with CMake under compatible licenses provide their own copyright notices -documented in corresponding subdirectories or source files. +The above copyright notice applies to distributions of CMake +in source and binary form. We do not require any formal copyright +assignment or contributor license agreement. Any contributions +intentionally sent upstream are presumed to be offered under terms +of the OSI-approved BSD 3-clause License. + +Third-party software packages supplied with CMake under compatible +licenses provide their own copyright notices documented in corresponding +subdirectories or source files. Sponsorship =========== -- cgit v0.12 From 8d83487e6018fc9fa3614e501098215a0c3e15c8 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 21:18:07 -0500 Subject: CONTRIBUTORS: Factor contributors list out of license file It is more conventional to list contributors in a dedicated file. Also drop the long out-of-date sponsorship section. --- .codespellrc | 2 +- .typos.toml | 2 +- CMakeCPack.cmake | 4 +- CMakeLists.txt | 1 + CONTRIBUTORS.rst | 100 +++++++++++++++++++++++++++++++++++++ LICENSE.rst | 118 +------------------------------------------- Source/CMakeCopyright.cmake | 4 +- 7 files changed, 110 insertions(+), 121 deletions(-) create mode 100644 CONTRIBUTORS.rst diff --git a/.codespellrc b/.codespellrc index 6b1398b..383e9ce 100644 --- a/.codespellrc +++ b/.codespellrc @@ -10,8 +10,8 @@ skip = .git, .typos.toml, build, + CONTRIBUTORS.rst, CTestCustom.cmake.in, - LICENSE.rst, Modules/Internal/CPack/NSIS.template.in, Source/CursesDialog/form/*, Source/kwsys/*, diff --git a/.typos.toml b/.typos.toml index d1ccb12..70608b8 100644 --- a/.typos.toml +++ b/.typos.toml @@ -57,7 +57,7 @@ SEH = "SEH" ignore-hidden = false ignore-dot = false extend-exclude = [ - "LICENSE.rst" + "CONTRIBUTORS.rst" # Exclude third-party sources. , "Source/CursesDialog/form/" , "Source/kwsys/" diff --git a/CMakeCPack.cmake b/CMakeCPack.cmake index 75cc5d9..97668d3 100644 --- a/CMakeCPack.cmake +++ b/CMakeCPack.cmake @@ -15,7 +15,9 @@ if(CMake_INSTALL_DEPENDENCIES) endif() set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/LICENSE.txt") -configure_file("${CMake_LICENSE_FILE}" "${CPACK_RESOURCE_FILE_LICENSE}" COPYONLY) +file(READ "${CMake_LICENSE_FILE}" license_text) +string(REPLACE "`Contributors `_" "Contributors" license_text "${license_text}") +file(WRITE "${CPACK_RESOURCE_FILE_LICENSE}" "${license_text}") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "CMake is a build tool") set(CPACK_PACKAGE_VENDOR "Kitware") diff --git a/CMakeLists.txt b/CMakeLists.txt index deb8bca..907c344 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -536,6 +536,7 @@ if(NOT CMake_TEST_EXTERNAL_CMAKE) # Install license file as it requires. install(FILES "${CMake_LICENSE_FILE}" + "${CMake_SOURCE_DIR}/CONTRIBUTORS.rst" DESTINATION ${CMAKE_DOC_DIR}) # Install script directories. diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst new file mode 100644 index 0000000..fc417df --- /dev/null +++ b/CONTRIBUTORS.rst @@ -0,0 +1,100 @@ +Contributors +************ + +The following individuals and institutions are among the contributors: + +* Aaron C. Meadows +* Adriaan de Groot +* Aleksey Avdeev +* Alexander Neundorf +* Alexander Smorkalov +* Alexey Sokolov +* Alex Merry +* Alex Turbov +* Andreas Pakulat +* Andreas Schneider +* André Rigland Brodtkorb +* Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf +* Benjamin Eikel +* Bjoern Ricks +* Brad Hards +* Christopher Harvey +* Christoph Grüninger +* Clement Creusot +* Daniel Blezek +* Daniel Pfeifer +* Dawid Wróbel +* Enrico Scholz +* Eran Ifrah +* Esben Mose Hansen, Ange Optimization ApS +* Geoffrey Viola +* Google Inc +* Gregor Jasny +* Helio Chissini de Castro +* Ilya Lavrenov +* Insight Software Consortium +* Intel Corporation +* Jan Woetzel +* Jordan Williams +* Julien Schueller +* Kelly Thompson +* Konstantin Podsvirov +* Laurent Montel +* Mario Bensi +* Martin Gräßlin +* Mathieu Malaterre +* Matthaeus G. Chajdas +* Matthias Kretz +* Matthias Maennich +* Michael Hirsch, Ph.D. +* Michael Stürmer +* Miguel A. Figueroa-Villanueva +* Mike Durso +* Mike Jackson +* Mike McQuaid +* Nicolas Bock +* Nicolas Despres +* Nikita Krupen'ko +* NVIDIA Corporation +* OpenGamma Ltd. +* Patrick Stotko +* Per Øyvind Karlsen +* Peter Collingbourne +* Petr Gotthard +* Philip Lowman +* Philippe Proulx +* Raffi Enficiaud, Max Planck Society +* Raumfeld +* Roger Leigh +* Rolf Eike Beer +* Roman Donchenko +* Roman Kharitonov +* Ruslan Baratov +* Sebastian Holtermann +* Stephen Kelly +* Sylvain Joubert +* The Qt Company Ltd. +* Thomas Sondergaard +* Tobias Hunger +* Todd Gamblin +* Tristan Carel +* University of Dundee +* Vadim Zhukov +* Will Dicharry + +See version control history for details of individual contributions. + +Copyright +========= + +The accompanying `LICENSE.rst`_ notice applies to distributions of CMake +in source and binary form. We do not require any formal copyright +assignment or contributor license agreement. Any contributions +intentionally sent upstream are presumed to be offered under terms +of the OSI-approved BSD 3-clause License. + +Third-party software packages supplied with CMake under compatible +licenses provide their own copyright notices documented in corresponding +subdirectories or source files. + +.. _`LICENSE.rst`: LICENSE.rst diff --git a/LICENSE.rst b/LICENSE.rst index a40aa86..782e365 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -1,4 +1,4 @@ -Copyright 2000-2025 Kitware, Inc. and Contributors +Copyright 2000-2025 Kitware, Inc. and `Contributors `_ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -26,119 +26,3 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Contributors -************ - -The following individuals and institutions are among the contributors: - -* Aaron C. Meadows -* Adriaan de Groot -* Aleksey Avdeev -* Alexander Neundorf -* Alexander Smorkalov -* Alexey Sokolov -* Alex Merry -* Alex Turbov -* Andreas Pakulat -* Andreas Schneider -* André Rigland Brodtkorb -* Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf -* Benjamin Eikel -* Bjoern Ricks -* Brad Hards -* Christopher Harvey -* Christoph Grüninger -* Clement Creusot -* Daniel Blezek -* Daniel Pfeifer -* Dawid Wróbel -* Enrico Scholz -* Eran Ifrah -* Esben Mose Hansen, Ange Optimization ApS -* Geoffrey Viola -* Google Inc -* Gregor Jasny -* Helio Chissini de Castro -* Ilya Lavrenov -* Insight Software Consortium -* Intel Corporation -* Jan Woetzel -* Jordan Williams -* Julien Schueller -* Kelly Thompson -* Konstantin Podsvirov -* Laurent Montel -* Mario Bensi -* Martin Gräßlin -* Mathieu Malaterre -* Matthaeus G. Chajdas -* Matthias Kretz -* Matthias Maennich -* Michael Hirsch, Ph.D. -* Michael Stürmer -* Miguel A. Figueroa-Villanueva -* Mike Durso -* Mike Jackson -* Mike McQuaid -* Nicolas Bock -* Nicolas Despres -* Nikita Krupen'ko -* NVIDIA Corporation -* OpenGamma Ltd. -* Patrick Stotko -* Per Øyvind Karlsen -* Peter Collingbourne -* Petr Gotthard -* Philip Lowman -* Philippe Proulx -* Raffi Enficiaud, Max Planck Society -* Raumfeld -* Roger Leigh -* Rolf Eike Beer -* Roman Donchenko -* Roman Kharitonov -* Ruslan Baratov -* Sebastian Holtermann -* Stephen Kelly -* Sylvain Joubert -* The Qt Company Ltd. -* Thomas Sondergaard -* Tobias Hunger -* Todd Gamblin -* Tristan Carel -* University of Dundee -* Vadim Zhukov -* Will Dicharry - -See version control history for details of individual contributions. - -Copyright -========= - -The above copyright notice applies to distributions of CMake -in source and binary form. We do not require any formal copyright -assignment or contributor license agreement. Any contributions -intentionally sent upstream are presumed to be offered under terms -of the OSI-approved BSD 3-clause License. - -Third-party software packages supplied with CMake under compatible -licenses provide their own copyright notices documented in corresponding -subdirectories or source files. - -Sponsorship -=========== - -CMake was initially developed by Kitware with the following sponsorship: - -* National Library of Medicine at the National Institutes of Health - as part of the Insight Segmentation and Registration Toolkit (ITK). - -* US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel - Visualization Initiative. - -* National Alliance for Medical Image Computing (NAMIC) is funded by the - National Institutes of Health through the NIH Roadmap for Medical Research, - Grant U54 EB005149. - -* Kitware, Inc. diff --git a/Source/CMakeCopyright.cmake b/Source/CMakeCopyright.cmake index ce0d2ed..a9af2d1 100644 --- a/Source/CMakeCopyright.cmake +++ b/Source/CMakeCopyright.cmake @@ -1,7 +1,9 @@ # CMake license file and copyright line. set(CMake_LICENSE_FILE "${CMake_SOURCE_DIR}/LICENSE.rst") file(STRINGS "${CMake_LICENSE_FILE}" CMake_COPYRIGHT_LINE LIMIT_COUNT 1 REGEX "^Copyright ") -if(NOT CMake_COPYRIGHT_LINE MATCHES [[^Copyright 2000-2[0-9][0-9][0-9] Kitware, Inc\. and Contributors$]]) +if(CMake_COPYRIGHT_LINE MATCHES [[^(Copyright 2000-2[0-9][0-9][0-9] Kitware, Inc\. and )`(Contributors) `_$]]) + set(CMake_COPYRIGHT_LINE "${CMAKE_MATCH_1}${CMAKE_MATCH_2}") +else() message(FATAL_ERROR "The CMake license file:\n" " ${CMake_LICENSE_FILE}\n" -- cgit v0.12 From 2f852580fb8e47c1e0fa2026641599a641b1482a Mon Sep 17 00:00:00 2001 From: Brad King Date: Sun, 2 Mar 2025 21:32:15 -0500 Subject: CONTRIBUTORS: Improve formatting of per-contributor hyperlinks --- CONTRIBUTORS.rst | 126 +++++++++++++++++++++++++++---------------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index fc417df..641d773 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -3,84 +3,84 @@ Contributors The following individuals and institutions are among the contributors: -* Aaron C. Meadows -* Adriaan de Groot -* Aleksey Avdeev -* Alexander Neundorf -* Alexander Smorkalov -* Alexey Sokolov -* Alex Merry -* Alex Turbov -* Andreas Pakulat -* Andreas Schneider -* André Rigland Brodtkorb +* `Aaron C. Meadows `_ +* `Adriaan de Groot `_ +* `Aleksey Avdeev `_ +* `Alexander Neundorf `_ +* `Alexander Smorkalov `_ +* `Alexey Sokolov `_ +* `Alex Merry `_ +* `Alex Turbov `_ +* `Andreas Pakulat `_ +* `Andreas Schneider `_ +* `André Rigland Brodtkorb `_ * Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf * Benjamin Eikel -* Bjoern Ricks -* Brad Hards +* `Bjoern Ricks `_ +* `Brad Hards `_ * Christopher Harvey -* Christoph Grüninger -* Clement Creusot -* Daniel Blezek -* Daniel Pfeifer -* Dawid Wróbel -* Enrico Scholz -* Eran Ifrah +* `Christoph Grüninger `_ +* `Clement Creusot `_ +* `Daniel Blezek `_ +* `Daniel Pfeifer `_ +* `Dawid Wróbel `_ +* `Enrico Scholz `_ +* `Eran Ifrah `_ * Esben Mose Hansen, Ange Optimization ApS -* Geoffrey Viola -* Google Inc +* `Geoffrey Viola `_ +* `Google Inc `_ * Gregor Jasny -* Helio Chissini de Castro -* Ilya Lavrenov -* Insight Software Consortium -* Intel Corporation +* `Helio Chissini de Castro `_ +* `Ilya Lavrenov `_ +* `Insight Software Consortium `_ +* `Intel Corporation `_ * Jan Woetzel -* Jordan Williams +* `Jordan Williams `_ * Julien Schueller -* Kelly Thompson -* Konstantin Podsvirov -* Laurent Montel -* Mario Bensi -* Martin Gräßlin -* Mathieu Malaterre +* `Kelly Thompson `_ +* `Konstantin Podsvirov `_ +* `Laurent Montel `_ +* `Mario Bensi `_ +* `Martin Gräßlin `_ +* `Mathieu Malaterre `_ * Matthaeus G. Chajdas -* Matthias Kretz -* Matthias Maennich -* Michael Hirsch, Ph.D. +* `Matthias Kretz `_ +* `Matthias Maennich `_ +* `Michael Hirsch, Ph.D. `_ * Michael Stürmer * Miguel A. Figueroa-Villanueva -* Mike Durso +* `Mike Durso `_ * Mike Jackson -* Mike McQuaid -* Nicolas Bock -* Nicolas Despres -* Nikita Krupen'ko -* NVIDIA Corporation -* OpenGamma Ltd. -* Patrick Stotko -* Per Øyvind Karlsen -* Peter Collingbourne -* Petr Gotthard -* Philip Lowman -* Philippe Proulx +* `Mike McQuaid `_ +* `Nicolas Bock `_ +* `Nicolas Despres `_ +* `Nikita Krupen'ko `_ +* `NVIDIA Corporation `_ +* `OpenGamma Ltd. `_ +* `Patrick Stotko `_ +* `Per Øyvind Karlsen `_ +* `Peter Collingbourne `_ +* `Petr Gotthard `_ +* `Philip Lowman `_ +* `Philippe Proulx `_ * Raffi Enficiaud, Max Planck Society -* Raumfeld -* Roger Leigh -* Rolf Eike Beer -* Roman Donchenko -* Roman Kharitonov +* `Raumfeld `_ +* `Roger Leigh `_ +* `Rolf Eike Beer `_ +* `Roman Donchenko `_ +* `Roman Kharitonov `_ * Ruslan Baratov -* Sebastian Holtermann -* Stephen Kelly -* Sylvain Joubert -* The Qt Company Ltd. -* Thomas Sondergaard -* Tobias Hunger -* Todd Gamblin +* `Sebastian Holtermann `_ +* `Stephen Kelly `_ +* `Sylvain Joubert `_ +* `The Qt Company Ltd. `_ +* `Thomas Sondergaard `_ +* `Tobias Hunger `_ +* `Todd Gamblin `_ * Tristan Carel -* University of Dundee +* `University of Dundee `_ * Vadim Zhukov -* Will Dicharry +* `Will Dicharry `_ See version control history for details of individual contributions. -- cgit v0.12