diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:47 (GMT) |
commit | 89e2a080e977b9632fa13c627b6a5370250d6ed5 (patch) | |
tree | ae24e3f07d12be05b42e80d878b8177bae84bf8a /Source/cmGeneratorTarget.h | |
parent | 62720e44be3e9f28e4c1e7d38206b2c51d34745e (diff) | |
download | CMake-89e2a080e977b9632fa13c627b6a5370250d6ed5.zip CMake-89e2a080e977b9632fa13c627b6a5370250d6ed5.tar.gz CMake-89e2a080e977b9632fa13c627b6a5370250d6ed5.tar.bz2 |
cmGeneratorTarget: Move GetMacContentDirectory from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index f96adad..8fc1b44 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -123,6 +123,15 @@ public: const std::string& config="", bool implib = false) const; + /** Append to @a base the mac content directory and return it. */ + std::string BuildMacContentDirectory(const std::string& base, + const std::string& config = "", + bool contentOnly = true) const; + + /** @return the mac content directory for this target. */ + std::string GetMacContentDirectory(const std::string& config = 0, + bool implib = false) const; + cmTarget* Target; cmMakefile* Makefile; cmLocalGenerator* LocalGenerator; |