mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 06:10:04 -05:00
Merge topic 'verify-interface-header-sets-add-compile-definitions' into release-3.24
27fd172d8dVERIFY_INTERFACE_HEADER_SETS: Finalize compile info for verify targets626e641a19cmTarget: Factor out FinalizeTargetCompileInfo() Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7516
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
#include <utility>
|
||||
|
||||
#include <cm/memory>
|
||||
#include <cm/optional>
|
||||
#include <cm/string_view>
|
||||
#include <cmext/algorithm>
|
||||
#include <cmext/string_view>
|
||||
@@ -8616,6 +8617,11 @@ bool cmGeneratorTarget::AddHeaderSetVerification()
|
||||
verifyTarget->SetProperty("AUTOUIC", "OFF");
|
||||
verifyTarget->SetProperty("DISABLE_PRECOMPILE_HEADERS", "ON");
|
||||
verifyTarget->SetProperty("UNITY_BUILD", "OFF");
|
||||
cm::optional<std::map<std::string, cmValue>>
|
||||
perConfigCompileDefinitions;
|
||||
verifyTarget->FinalizeTargetCompileInfo(
|
||||
this->Makefile->GetCompileDefinitionsEntries(),
|
||||
perConfigCompileDefinitions);
|
||||
}
|
||||
|
||||
if (fileCgesContextSensitive) {
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
#include <utility>
|
||||
|
||||
#include <cm/memory>
|
||||
#include <cm/optional>
|
||||
#include <cmext/algorithm>
|
||||
#include <cmext/string_view>
|
||||
|
||||
@@ -1823,39 +1824,14 @@ void cmGlobalGenerator::FinalizeTargetCompileInfo()
|
||||
|
||||
// Construct per-target generator information.
|
||||
for (const auto& mf : this->Makefiles) {
|
||||
const cmBTStringRange noconfig_compile_definitions =
|
||||
const cmBTStringRange noConfigCompileDefinitions =
|
||||
mf->GetCompileDefinitionsEntries();
|
||||
cm::optional<std::map<std::string, cmValue>> perConfigCompileDefinitions;
|
||||
|
||||
for (auto& target : mf->GetTargets()) {
|
||||
cmTarget* t = &target.second;
|
||||
if (t->GetType() == cmStateEnums::GLOBAL_TARGET) {
|
||||
continue;
|
||||
}
|
||||
|
||||
t->AppendBuildInterfaceIncludes();
|
||||
|
||||
if (t->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
|
||||
continue;
|
||||
}
|
||||
|
||||
for (auto const& def : noconfig_compile_definitions) {
|
||||
t->InsertCompileDefinition(def);
|
||||
}
|
||||
|
||||
cmPolicies::PolicyStatus polSt =
|
||||
mf->GetPolicyStatus(cmPolicies::CMP0043);
|
||||
if (polSt == cmPolicies::WARN || polSt == cmPolicies::OLD) {
|
||||
std::vector<std::string> configs =
|
||||
mf->GetGeneratorConfigs(cmMakefile::ExcludeEmptyConfig);
|
||||
|
||||
for (std::string const& c : configs) {
|
||||
std::string defPropName =
|
||||
cmStrCat("COMPILE_DEFINITIONS_", cmSystemTools::UpperCase(c));
|
||||
if (cmValue val = mf->GetProperty(defPropName)) {
|
||||
t->AppendProperty(defPropName, *val);
|
||||
}
|
||||
}
|
||||
}
|
||||
t->FinalizeTargetCompileInfo(noConfigCompileDefinitions,
|
||||
perConfigCompileDefinitions);
|
||||
}
|
||||
|
||||
// The standard include directories for each language
|
||||
|
||||
@@ -1881,6 +1881,51 @@ void cmTarget::AppendBuildInterfaceIncludes()
|
||||
}
|
||||
}
|
||||
|
||||
void cmTarget::FinalizeTargetCompileInfo(
|
||||
const cmBTStringRange& noConfigCompileDefinitions,
|
||||
cm::optional<std::map<std::string, cmValue>>& perConfigCompileDefinitions)
|
||||
{
|
||||
if (this->GetType() == cmStateEnums::GLOBAL_TARGET) {
|
||||
return;
|
||||
}
|
||||
|
||||
this->AppendBuildInterfaceIncludes();
|
||||
|
||||
if (this->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (auto const& def : noConfigCompileDefinitions) {
|
||||
this->InsertCompileDefinition(def);
|
||||
}
|
||||
|
||||
auto* mf = this->GetMakefile();
|
||||
cmPolicies::PolicyStatus polSt = mf->GetPolicyStatus(cmPolicies::CMP0043);
|
||||
if (polSt == cmPolicies::WARN || polSt == cmPolicies::OLD) {
|
||||
if (perConfigCompileDefinitions) {
|
||||
for (auto const& it : *perConfigCompileDefinitions) {
|
||||
if (cmValue val = it.second) {
|
||||
this->AppendProperty(it.first, *val);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
perConfigCompileDefinitions.emplace();
|
||||
std::vector<std::string> configs =
|
||||
mf->GetGeneratorConfigs(cmMakefile::ExcludeEmptyConfig);
|
||||
|
||||
for (std::string const& c : configs) {
|
||||
std::string defPropName =
|
||||
cmStrCat("COMPILE_DEFINITIONS_", cmSystemTools::UpperCase(c));
|
||||
cmValue val = mf->GetProperty(defPropName);
|
||||
(*perConfigCompileDefinitions)[defPropName] = val;
|
||||
if (val) {
|
||||
this->AppendProperty(defPropName, *val);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void cmTarget::InsertInclude(BT<std::string> const& entry, bool before)
|
||||
{
|
||||
auto position = before ? this->impl->IncludeDirectoriesEntries.begin()
|
||||
|
||||
@@ -5,12 +5,15 @@
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
#include <iosfwd>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <set>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <cm/optional>
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmFileSet.h"
|
||||
#include "cmPolicies.h"
|
||||
@@ -233,6 +236,9 @@ public:
|
||||
void InsertPrecompileHeader(BT<std::string> const& entry);
|
||||
|
||||
void AppendBuildInterfaceIncludes();
|
||||
void FinalizeTargetCompileInfo(
|
||||
const cmBTStringRange& noConfigCompileDefinitions,
|
||||
cm::optional<std::map<std::string, cmValue>>& perConfigCompileDefinitions);
|
||||
|
||||
std::string GetDebugGeneratorExpressions(const std::string& value,
|
||||
cmTargetLinkLibraryType llt) const;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
enable_language(C CXX)
|
||||
|
||||
add_compile_definitions(TEST_ADD_COMPILE_DEFINITIONS)
|
||||
|
||||
set_property(SOURCE a.h PROPERTY LANGUAGE C)
|
||||
set_property(SOURCE dir/c.h PROPERTY LANGUAGE C)
|
||||
set_property(SOURCE dir/cxx.h PROPERTY LANGUAGE CXX)
|
||||
|
||||
@@ -2,4 +2,8 @@
|
||||
# error "TEST_A_H defined"
|
||||
#endif
|
||||
|
||||
#ifndef TEST_ADD_COMPILE_DEFINITIONS
|
||||
# error "TEST_ADD_COMPILE_DEFINITIONS not defined"
|
||||
#endif
|
||||
|
||||
extern void a_h(void);
|
||||
|
||||
Reference in New Issue
Block a user