diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmLocalGenerator.h | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2 |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 0323913..6f812ab 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -155,7 +155,8 @@ public: bool /* clear */) {}; /** Called from command-line hook to scan dependencies. */ - virtual bool ScanDependencies(std::vector<std::string> const& /* args */) {return true;}; + virtual bool ScanDependencies(std::vector<std::string> const& /* args */) + {return true;}; /** Compute the list of link libraries and directories for the given target and configuration. */ @@ -205,7 +206,8 @@ protected: const char* workingDirectory, const char* newline = "\n"); - ///! Fill out these strings for the given target. Libraries to link, flags, and linkflags. + /** Fill out these strings for the given target. Libraries to link, + * flags, and linkflags. */ void GetTargetFlags(std::string& linkLibs, std::string& flags, std::string& linkFlags, @@ -221,7 +223,8 @@ protected: std::string ExpandRuleVariable(std::string const& variable, const RuleVariables& replaceValues); - ///! Convert a target to a utility target for unsupported languages of a generator + /** Convert a target to a utility target for unsupported + * languages of a generator */ void AddBuildTargetRule(const char* llang, cmTarget& target); ///! add a custom command to build a .o file that is part of a target void AddCustomCommandToCreateObject(const char* ofname, |