summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-23 13:57:09 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-23 14:04:56 (GMT)
commitfa8e2dfc7b10066b2ba575c20ea96d802109e6c3 (patch)
tree647eb7596633aa081c6a06046b674e84834fd453 /Source/cmTarget.h
parentc9bd2e941f106c4c23bb2bb2623991251b528aa5 (diff)
downloadCMake-fa8e2dfc7b10066b2ba575c20ea96d802109e6c3.zip
CMake-fa8e2dfc7b10066b2ba575c20ea96d802109e6c3.tar.gz
CMake-fa8e2dfc7b10066b2ba575c20ea96d802109e6c3.tar.bz2
cmTarget: Move member `TargetType` to impl
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 0701661..d18acef 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -66,10 +66,8 @@ public:
POST_BUILD
};
- /**
- * Return the type of target.
- */
- cmStateEnums::TargetType GetType() const { return this->TargetTypeValue; }
+ ///! Return the type of target.
+ cmStateEnums::TargetType GetType() const;
cmGlobalGenerator* GetGlobalGenerator() const;
@@ -320,7 +318,6 @@ private:
LinkLibraryVectorType OriginalLinkLibraries;
cmMakefile* Makefile;
cmTargetInternalPointer impl;
- cmStateEnums::TargetType TargetTypeValue;
bool HaveInstallRule;
bool DLLPlatform;
bool IsAndroid;