summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 18:12:13 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-12 18:12:13 (GMT)
commitcac30b5ff8f7034b5290700a4dee28c84e001ac9 (patch)
tree1fce61b7bd143361ff8be6861fde27abb1732e10 /Source/cmTarget.h
parentdaa37f116340fa86c1a511847fe65ad999095fa0 (diff)
downloadCMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.zip
CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.gz
CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 736bad5..cc39572 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -60,7 +60,8 @@ public:
*/
bool IsInAll() { return this->GetPropertyAsBool("IN_ALL"); }
bool GetInAll() { return this->GetPropertyAsBool("IN_ALL"); }
- void SetInAll(bool f) { this->SetProperty("IN_ALL", (f) ?"TRUE" : "FALSE"); }
+ void SetInAll(bool f) {
+ this->SetProperty("IN_ALL", (f) ?"TRUE" : "FALSE"); }
///! Set the cmMakefile that owns this target
void SetMakefile(cmMakefile *mf);
@@ -96,7 +97,8 @@ public:
typedef std::vector<std::pair<std::string,LinkLibraryType> >
LinkLibraryVectorType;
- const LinkLibraryVectorType &GetLinkLibraries() {return this->LinkLibraries;}
+ const LinkLibraryVectorType &GetLinkLibraries() {
+ return this->LinkLibraries;}
const LinkLibraryVectorType &GetOriginalLinkLibraries()
{return this->OriginalLinkLibraries;}
@@ -133,7 +135,8 @@ public:
* installed. This is relative to INSTALL_PREFIX
*/
std::string GetRuntimeInstallPath() {return this->RuntimeInstallPath;}
- void SetRuntimeInstallPath(const char *name) {this->RuntimeInstallPath = name;}
+ void SetRuntimeInstallPath(const char *name) {
+ this->RuntimeInstallPath = name;}
/**
* Get/Set whether there is an install rule for this target.
@@ -189,9 +192,10 @@ public:
/** Get the full name of the target according to the settings in its
makefile. */
std::string GetFullName(const char* config=0, bool implib = false);
- void GetFullName(std::string& prefix, std::string& base, std::string& suffix,
+ void GetFullName(std::string& prefix,
+ std::string& base, std::string& suffix,
const char* config=0, bool implib = false);
-
+
/** Get the full path to the target according to the settings in its
makefile and the configuration type. */
std::string GetFullPath(const char* config=0, bool implib = false);