diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 13:57:09 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 14:04:56 (GMT) |
commit | fa8e2dfc7b10066b2ba575c20ea96d802109e6c3 (patch) | |
tree | 647eb7596633aa081c6a06046b674e84834fd453 /Source/cmTarget.h | |
parent | c9bd2e941f106c4c23bb2bb2623991251b528aa5 (diff) | |
download | CMake-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.h | 7 |
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; |