summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-03-12 14:26:59 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-03-12 14:26:59 (GMT)
commitb99129d2d81a494055d40443e8e044c9db4ca807 (patch)
tree07cbf0e96e3cb1480e182f5bbbf860d2224beade /Source/cmMakefile.h
parentcf7eeab37aa644a0a09cb40e8958d99e8d771857 (diff)
downloadCMake-b99129d2d81a494055d40443e8e044c9db4ca807.zip
CMake-b99129d2d81a494055d40443e8e044c9db4ca807.tar.gz
CMake-b99129d2d81a494055d40443e8e044c9db4ca807.tar.bz2
ENH: some code cleanup
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index cc4d3c9..606ddee 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -170,7 +170,7 @@ public:
*/
cmTarget* AddExecutable(const char *exename,
const std::vector<std::string> &srcs,
- bool in_all = true);
+ bool excludeFromAll = false);
/**
* Add a utility to the build. A utiltity target is a command that
@@ -224,10 +224,10 @@ public:
/**
* Add a subdirectory to the build.
*/
- void AddSubDirectory(const char*, bool includeTopLevel=true,
+ void AddSubDirectory(const char*, bool excludeFromAll=false,
bool preorder = false);
void AddSubDirectory(const char* fullSrcDir,const char *fullBinDir,
- bool includeTopLevel, bool preorder,
+ bool excludeFromAll, bool preorder,
bool immediate);
/**
@@ -281,7 +281,7 @@ public:
*/
void AddLibrary(const char *libname, int shared,
const std::vector<std::string> &srcs,
- bool in_all = true);
+ bool excludeFromAll = false);
#if defined(CMAKE_BUILD_WITH_CMAKE)
/**