summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-25 14:09:41 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-27 20:54:11 (GMT)
commite0213882222798eec587a4dbed6f28555d64b8d9 (patch)
treed7238f72dacab95f645ac2c27151969cc2bd8ad6 /Source/cmTarget.cxx
parent0554c2c970bf12dba01b408f3d8a103ede10a30b (diff)
downloadCMake-e0213882222798eec587a4dbed6f28555d64b8d9.zip
CMake-e0213882222798eec587a4dbed6f28555d64b8d9.tar.gz
CMake-e0213882222798eec587a4dbed6f28555d64b8d9.tar.bz2
cmTarget: Remove obsolete member
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index a016e92..da49048 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -61,7 +61,6 @@ cmTarget::cmTarget()
this->HaveInstallRule = false;
this->DLLPlatform = false;
this->IsAndroid = false;
- this->IsApple = false;
this->IsImportedTarget = false;
this->BuildInterfaceIncludesAppended = false;
}
@@ -98,9 +97,6 @@ void cmTarget::SetMakefile(cmMakefile* mf)
strcmp(this->Makefile->GetSafeDefinition("CMAKE_SYSTEM_NAME"),
"Android") == 0;
- // Check whether we are targeting an Apple platform.
- this->IsApple = this->Makefile->IsOn("APPLE");
-
// Setup default property values.
if (this->GetType() != cmState::INTERFACE_LIBRARY
&& this->GetType() != cmState::UTILITY)