summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2013-09-19 17:03:38 (GMT)
committerBrad King <brad.king@kitware.com>2013-10-08 13:16:32 (GMT)
commit97124f91a5eaa5b1bf962813e72b1b2406960a76 (patch)
tree1f54e6bcc2cf90d855f9881d8fa8f4e08ec69582 /Source/cmTarget.h
parent8e96353fd85cff5f06bda071f3a11397e3faa757 (diff)
downloadCMake-97124f91a5eaa5b1bf962813e72b1b2406960a76.zip
CMake-97124f91a5eaa5b1bf962813e72b1b2406960a76.tar.gz
CMake-97124f91a5eaa5b1bf962813e72b1b2406960a76.tar.bz2
cmTarget: Properly escape @ char in doxygen comments
Found by clang's -Wdocumentation.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 27b74ca..527cbc7 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -372,7 +372,7 @@ 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. */
+ /** 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
@@ -421,12 +421,12 @@ public:
bool IsChrpathUsed(const char* config);
/** Return the install name directory for the target in the
- * build tree. For example: "@rpath/", "@loader_path/",
+ * 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/". */
+ * install tree. For example: "\@rpath/" or "\@loader_path/". */
std::string GetInstallNameDirForInstallTree();
cmComputeLinkInformation* GetLinkInformation(const char* config,