diff options
author | Brad King <brad.king@kitware.com> | 2022-02-04 11:39:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-04 11:44:22 (GMT) |
commit | d184bf0659403275fe50862b5a7aecc88bb872b3 (patch) | |
tree | 7020ebb62bed6e52c0e73fa5a0628430ccff78ab /Source | |
parent | c63ee048cba7bf32c7f92a9c5c109b39c851af74 (diff) | |
download | CMake-d184bf0659403275fe50862b5a7aecc88bb872b3.zip CMake-d184bf0659403275fe50862b5a7aecc88bb872b3.tar.gz CMake-d184bf0659403275fe50862b5a7aecc88bb872b3.tar.bz2 |
Replace DEVEL_CMAKE_VERSION with literal 3.23 release version
This was accidentally left out of commit 736663deed (Begin 3.23 release
versioning, 2022-02-03). The step is documented as part of the release
branching process in the CMake Maintainer Guide `Help/dev/maint.rst`.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index 412d104..2d80f0e 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -1272,8 +1272,7 @@ void cmExportFileGenerator::GenerateTargetFileSets(cmGeneratorTarget* gte, auto interfaceFileSets = gte->Target->GetAllInterfaceFileSets(); if (!interfaceFileSets.empty()) { std::string targetName = cmStrCat(this->Namespace, gte->GetExportName()); - os << "if(NOT CMAKE_VERSION VERSION_LESS \"" << DEVEL_CMAKE_VERSION(3, 23) - << "\")\n" + os << "if(NOT CMAKE_VERSION VERSION_LESS \"3.23.0\")\n" " target_sources(" << targetName << "\n"; |