summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-06-03 13:56:44 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-06-03 13:56:44 (GMT)
commit3caf565d079af73f0ea8aaa7b6f4f212e0fcb15d (patch)
treed27ff59dbffe4dd8b672b9439266b2360b44e298 /Source/cmTarget.h
parentd444fea16339e3d39bc38244d2f0ee36b31b6be1 (diff)
parentdc1d025197d48829f2c0389824c8273b9e257413 (diff)
downloadCMake-3caf565d079af73f0ea8aaa7b6f4f212e0fcb15d.zip
CMake-3caf565d079af73f0ea8aaa7b6f4f212e0fcb15d.tar.gz
CMake-3caf565d079af73f0ea8aaa7b6f4f212e0fcb15d.tar.bz2
Merge topic 'rpath-on-mac'
dc1d025 OS X: Add test for rpaths on Mac. 8576b3f OS X: Add support for @rpath in export files. 00d71bd Xcode: Add rpath support in Xcode generator. 94e7fef OS X: Add RPATH support for Mac.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 402379c..0bcc2a8 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -367,6 +367,9 @@ public:
/** Get the soname of the target. Allowed only for a shared library. */
std::string GetSOName(const char* config);
+ /** Whether this library has @rpath and platform supports it. */
+ bool HasMacOSXRpath(const char* config);
+
/** Test for special case of a third-party shared library that has
no soname at all. */
bool IsImportedSharedLibWithoutSOName(const char* config);
@@ -412,7 +415,13 @@ public:
/** Return true if builtin chrpath will work for this target */
bool IsChrpathUsed(const char* config);
+ /** Return the install name directory for the target in the
+ * build tree. For example: "@rpath/", "@loader_path/",
+ * or "/full/path/to/library". */
std::string GetInstallNameDirForBuildTree(const char* config);
+
+ /** Return the install name directory for the target in the
+ * install tree. For example: "@rpath/" or "@loader_path/". */
std::string GetInstallNameDirForInstallTree();
cmComputeLinkInformation* GetLinkInformation(const char* config,