summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-03-10 16:13:15 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-03-10 16:13:15 (GMT)
commit6b47b288678569a630c14af24200ec6f3736218a (patch)
tree046f59fe806476f6a057ea1627285f70fba055a2 /Source/cmMakefile.h
parente0be3c71257164b58ce5ae1a0399b1d5b7f2441a (diff)
downloadCMake-6b47b288678569a630c14af24200ec6f3736218a.zip
CMake-6b47b288678569a630c14af24200ec6f3736218a.tar.gz
CMake-6b47b288678569a630c14af24200ec6f3736218a.tar.bz2
ENH: fix line length style stuff
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 6095cdb..8dd9163 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -217,7 +217,8 @@ public:
/**
* Add a subdirectory to the build.
*/
- void AddSubDirectory(const char*, bool includeTopLevel=true, bool preorder = false);
+ void AddSubDirectory(const char*, bool includeTopLevel=true,
+ bool preorder = false);
void AddSubDirectory(const char* fullSrcDir,const char *fullBinDir,
bool includeTopLevel, bool preorder,
bool immediate);
@@ -277,7 +278,8 @@ public:
/**
* Add a source group for consideration when adding a new source.
*/
- void AddSourceGroup(const char* name, const char* regex=0, const char* parent=0);
+ void AddSourceGroup(const char* name, const char* regex=0,
+ const char* parent=0);
/**
* Add an auxiliary directory to the build.
@@ -576,7 +578,7 @@ public:
*/
void AddCommand(cmCommand* );
- ///! Enable support for the named language, if null then all languages are enabled.
+ ///! Enable support for named language, if nil then all languages are enabled.
void EnableLanguage(std::vector<std::string>const& languages);
/**
@@ -713,8 +715,10 @@ private:
void ReadSources(std::ifstream& fin, bool t);
friend class cmMakeDepend; // make depend needs direct access
// to the m_Sources array
- void PrintStringVector(const char* s, const std::vector<std::pair<cmStdString, bool> >& v) const;
- void PrintStringVector(const char* s, const std::vector<std::string>& v) const;
+ void PrintStringVector(const char* s, const
+ std::vector<std::pair<cmStdString, bool> >& v) const;
+ void PrintStringVector(const char* s,
+ const std::vector<std::string>& v) const;
void AddDefaultDefinitions();
std::list<cmFunctionBlocker *> m_FunctionBlockers;