summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-01 18:01:52 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-01 18:32:48 (GMT)
commitf2e07a6d90806d50b6897051c2275e38689d16e7 (patch)
treec770def8075773e968dcc899c98a82af2a4c4e6e /Source/cmMakefile.h
parentaafe2821889333ee647c67e0fc55472d7903c02a (diff)
downloadCMake-f2e07a6d90806d50b6897051c2275e38689d16e7.zip
CMake-f2e07a6d90806d50b6897051c2275e38689d16e7.tar.gz
CMake-f2e07a6d90806d50b6897051c2275e38689d16e7.tar.bz2
cmMakefile: Remove unused PreOrder member.
Remove references from dependendent API.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 321caea..ebfe508 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -292,11 +292,10 @@ public:
/**
* Add a subdirectory to the build.
*/
- void AddSubDirectory(const std::string&, bool excludeFromAll=false,
- bool preorder = false);
+ void AddSubDirectory(const std::string&, bool excludeFromAll=false);
void AddSubDirectory(const std::string& fullSrcDir,
const std::string& fullBinDir,
- bool excludeFromAll, bool preorder,
+ bool excludeFromAll,
bool immediate);
/**
@@ -864,10 +863,6 @@ public:
///! Initialize a makefile from its parent
void InitializeFromParent();
- ///! Set/Get the preorder flag
- void SetPreOrder(bool p) { this->PreOrder = p; }
- bool GetPreOrder() const { return this->PreOrder; }
-
void AddInstallGenerator(cmInstallGenerator* g)
{ if(g) this->InstallGenerators.push_back(g); }
std::vector<cmInstallGenerator*>& GetInstallGenerators()
@@ -1056,9 +1051,6 @@ private:
cmPropertyMap Properties;
- // should this makefile be processed before or after processing the parent
- bool PreOrder;
-
// Unused variable flags
bool WarnUnused;
bool CheckSystemVars;