diff options
author | Brad King <brad.king@kitware.com> | 2016-09-15 20:00:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-15 20:02:27 (GMT) |
commit | 9353d991a4a9df1c7bdededaf0b11fc96227f805 (patch) | |
tree | a3f3079c8bd22b9e5c0631c1c59d4ac6112a8cc9 /Source/cmTarget.h | |
parent | fa3897b24eb9a5cbc4926659b11f8cb6087789a1 (diff) | |
download | CMake-9353d991a4a9df1c7bdededaf0b11fc96227f805.zip CMake-9353d991a4a9df1c7bdededaf0b11fc96227f805.tar.gz CMake-9353d991a4a9df1c7bdededaf0b11fc96227f805.tar.bz2 |
cmTarget: Remove unused support for partial construction
We no longer need to support partial construction for cmTarget instances
of type GLOBAL_TARGET. Require all constructor arguments up front.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index ebc92f3..4b182bb 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -88,9 +88,6 @@ public: ///! Set/Get the name of the target const std::string& GetName() const { return this->Name; } - /** Get a copy of this target adapted for the given directory. */ - cmTarget CopyForDirectory(cmMakefile* mf) const; - /** Get the cmMakefile that owns this target. */ cmMakefile* GetMakefile() const { return this->Makefile; } @@ -283,8 +280,6 @@ public: }; private: - void SetMakefile(cmMakefile* mf); - bool HandleLocationPropertyPolicy(cmMakefile* context) const; const char* GetSuffixVariableInternal(bool implib) const; |