summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-02-01 14:11:37 (GMT)
committerKitware Robot <kwrobot@kitware.com>2023-02-01 14:11:45 (GMT)
commit0292cf3c96302922c2d9868ed16c1420e0c88231 (patch)
treeaa45b732a823b6cd8ce866dd503d9d473a9ec944
parentb2ceca65531abed1a7d3afa6b68953728d05263c (diff)
parent8527f42b962e605ba5ae9334a4ee01d04e08194f (diff)
downloadCMake-0292cf3c96302922c2d9868ed16c1420e0c88231.zip
CMake-0292cf3c96302922c2d9868ed16c1420e0c88231.tar.gz
CMake-0292cf3c96302922c2d9868ed16c1420e0c88231.tar.bz2
Merge topic 'xcode-header-search'
8527f42b96 Xcode: Explicitly disable deprecated user include path feature Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8143
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 8e6e706..f91879e 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2975,7 +2975,8 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmGeneratorTarget* gtgt,
this->CreateString(extraLinkOptions));
buildSettings->AddAttribute("OTHER_REZFLAGS", this->CreateString(""));
buildSettings->AddAttribute("SECTORDER_FLAGS", this->CreateString(""));
- buildSettings->AddAttribute("USE_HEADERMAP", this->CreateString("NO"));
+ buildSettings->AddAttribute("ALWAYS_SEARCH_USER_PATHS",
+ this->CreateString("NO"));
cmXCodeObject* group = this->CreateObject(cmXCodeObject::OBJECT_LIST);
group->AddObject(this->CreateString("$(inherited)"));
buildSettings->AddAttribute("WARNING_CFLAGS", group);