summaryrefslogtreecommitdiff
path: root/Source/cmOSXBundleGenerator.cxx
diff options
context:
space:
mode:
authorGregor Jasny <gjasny@googlemail.com>2017-11-04 13:29:25 +0100
committerGregor Jasny <gjasny@googlemail.com>2017-12-22 21:56:53 +0100
commit8f4663ffb265b6216cc9da9019e6169e27f0d8ec (patch)
tree039fb855d5d16d366c5abcfc080a3d5ea8c37550 /Source/cmOSXBundleGenerator.cxx
parent4309ed25eee874ee73a715897550e2ea18631f41 (diff)
downloadcmake-8f4663ffb265b6216cc9da9019e6169e27f0d8ec.tar.gz
Xcode: rename embedded SDK query function
Diffstat (limited to 'Source/cmOSXBundleGenerator.cxx')
-rw-r--r--Source/cmOSXBundleGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmOSXBundleGenerator.cxx b/Source/cmOSXBundleGenerator.cxx
index c85c82d846..e658e2c160 100644
--- a/Source/cmOSXBundleGenerator.cxx
+++ b/Source/cmOSXBundleGenerator.cxx
@@ -82,7 +82,7 @@ void cmOSXBundleGenerator::CreateFramework(const std::string& targetName,
// Configure the Info.plist file
std::string plist = newoutpath;
- if (!this->Makefile->PlatformIsAppleIos()) {
+ if (!this->Makefile->PlatformIsAppleEmbedded()) {
// Put the Info.plist file into the Resources directory.
this->MacContentFolders->insert("Resources");
plist += "/Resources";
@@ -93,7 +93,7 @@ void cmOSXBundleGenerator::CreateFramework(const std::string& targetName,
plist.c_str());
// Generate Versions directory only for MacOSX frameworks
- if (this->Makefile->PlatformIsAppleIos()) {
+ if (this->Makefile->PlatformIsAppleEmbedded()) {
return;
}