summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-09-14 17:38:00 (GMT)
committerBrad King <brad.king@kitware.com>2016-09-14 18:50:39 (GMT)
commitd97513d842c51e4fb996d42e1f04a9c291e3d5bf (patch)
tree5db0bf17e9b58e722228da22651a0423cead65c7 /Source/cmTarget.h
parentea69e03afaeff76d2141ab4a330f3489297a3a41 (diff)
downloadCMake-d97513d842c51e4fb996d42e1f04a9c291e3d5bf.zip
CMake-d97513d842c51e4fb996d42e1f04a9c291e3d5bf.tar.gz
CMake-d97513d842c51e4fb996d42e1f04a9c291e3d5bf.tar.bz2
cmTarget: Add method to get a copy adapted for a directory
The "global" targets are built once for the top directory and then copied into all directories. Add a helper method to make the copy.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index fc30166..b0bfc72 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -86,6 +86,9 @@ 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;
+
///! Set the cmMakefile that owns this target
void SetMakefile(cmMakefile* mf);
cmMakefile* GetMakefile() const { return this->Makefile; }