summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-23 19:51:43 +0100
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-23 22:22:34 +0100
commitecc782c75d7ce98c03164f616e9adf9760ce0d7f (patch)
tree85158b5ad5d8795b76bd34015ba23fcddc7898ae /Source
parentbe2764a6576baf4b380cfcf5418284e9bee80dfa (diff)
downloadcmake-ecc782c75d7ce98c03164f616e9adf9760ce0d7f.tar.gz
cmTarget: Single line comment clanups
Diffstat (limited to 'Source')
-rw-r--r--Source/cmTarget.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index db73375de8..f6ccdb4b4d 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -190,18 +190,16 @@ public:
bool GetMappedConfig(std::string const& desired_config, const char** loc,
const char** imp, std::string& suffix) const;
- /** Return whether this target is an executable with symbol exports
- enabled. */
+ ///! Return whether this target is an executable with symbol exports enabled.
bool IsExecutableWithExports() const;
- /** Return whether this target is a shared library Framework on
- Apple. */
+ ///! Return whether this target is a shared library Framework on Apple.
bool IsFrameworkOnApple() const;
- /** Return whether this target is an executable Bundle on Apple. */
+ ///! Return whether this target is an executable Bundle on Apple.
bool IsAppBundleOnApple() const;
- /** Get a backtrace from the creation of the target. */
+ ///! Get a backtrace from the creation of the target.
cmListFileBacktrace const& GetBacktrace() const;
void InsertInclude(std::string const& entry, cmListFileBacktrace const& bt,
@@ -247,14 +245,14 @@ public:
cmStringRange GetLinkImplementationEntries() const;
cmBacktraceRange GetLinkImplementationBacktraces() const;
+ std::string ImportedGetFullPath(const std::string& config,
+ cmStateEnums::ArtifactType artifact) const;
+
struct StrictTargetComparison
{
bool operator()(cmTarget const* t1, cmTarget const* t2) const;
};
- std::string ImportedGetFullPath(const std::string& config,
- cmStateEnums::ArtifactType artifact) const;
-
private:
// Internal representation details.
friend class cmGeneratorTarget;