diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-10-16 17:57:54 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-10-16 17:57:54 (GMT) |
commit | 0f36156740aaea82795444c8468fbfd5dc1e3810 (patch) | |
tree | 793efb3ddb7553621e59915ddecc76cc839c5a90 /Source/cmExportBuildFileGenerator.cxx | |
parent | 7080b4ae8354b9e8deada0f35ff02a1bc1cc13a7 (diff) | |
download | CMake-0f36156740aaea82795444c8468fbfd5dc1e3810.zip CMake-0f36156740aaea82795444c8468fbfd5dc1e3810.tar.gz CMake-0f36156740aaea82795444c8468fbfd5dc1e3810.tar.bz2 |
cxxmodules: include `INCLUDES DESTINATION` directories
These paths are added outside the normal property management mechanisms.
Shuttle the value to the C++ module export as needed.
Fixes: #25289
Diffstat (limited to 'Source/cmExportBuildFileGenerator.cxx')
-rw-r--r-- | Source/cmExportBuildFileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportBuildFileGenerator.cxx b/Source/cmExportBuildFileGenerator.cxx index 69572f4..bf3bb8b 100644 --- a/Source/cmExportBuildFileGenerator.cxx +++ b/Source/cmExportBuildFileGenerator.cxx @@ -127,7 +127,7 @@ bool cmExportBuildFileGenerator::GenerateMainFile(std::ostream& os) std::string errorMessage; if (!this->PopulateCxxModuleExportProperties( - gte, properties, cmGeneratorExpression::BuildInterface, + gte, properties, cmGeneratorExpression::BuildInterface, {}, errorMessage)) { this->LG->GetGlobalGenerator()->GetCMakeInstance()->IssueMessage( MessageType::FATAL_ERROR, errorMessage, |