diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-09 21:45:55 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 16:39:59 (GMT) |
commit | 526cc7dc52673f1eeb1055ce381e0551f763daea (patch) | |
tree | db90d5ce3d8b6cbef17be99d5773208d90d5c95a /Source/cmTarget.h | |
parent | 8d2e3e53b903b1ee38292b6bcdf3e4eeb5399a05 (diff) | |
download | CMake-526cc7dc52673f1eeb1055ce381e0551f763daea.zip CMake-526cc7dc52673f1eeb1055ce381e0551f763daea.tar.gz CMake-526cc7dc52673f1eeb1055ce381e0551f763daea.tar.bz2 |
cmGeneratorTarget: Move HasImportLibrary from cmTarget.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 500b598..291ef87 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -262,9 +262,6 @@ public: /** Return whether or not the target is for a DLL platform. */ bool IsDLLPlatform() const { return this->DLLPlatform; } - /** Return whether or not the target has a DLL import library. */ - bool HasImportLibrary() const; - /** Return whether this target is a shared library Framework on Apple. */ bool IsFrameworkOnApple() const; @@ -463,6 +460,9 @@ private: void MaybeInvalidatePropertyCache(const std::string& prop); + /** Return whether or not the target has a DLL import library. */ + bool HasImportLibrary() const; + // Internal representation details. friend class cmTargetInternals; friend class cmGeneratorTarget; |