From 02a114dfe8304e6fa90b9c6565349eb7e0fb1168 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 15 Sep 2010 11:34:35 -0400 Subject: Add method to allow variables to be marked as used --- Source/cmMakefile.cxx | 5 +++++ Source/cmMakefile.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 4084d0e..85a0ccc 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1735,6 +1735,11 @@ void cmMakefile::AddDefinition(const char* name, bool value) #endif } +void cmMakefile::MarkVariableAsUsed(const char* var) +{ + this->Internal->VarUsageStack.top().insert(var); +} + bool cmMakefile::VariableInitialized(const char* var) const { if(this->Internal->VarInitStack.top().find(var) != this->Internal->VarInitStack.top().end()) diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 89979d6..6b0bfa2 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -61,6 +61,8 @@ public: unsigned int GetCacheMajorVersion(); unsigned int GetCacheMinorVersion(); + /* Mark a variable as used */ + void MarkVariableAsUsed(const char* var); /* return true if a variable has been initialized */ bool VariableInitialized(const char* ) const; /* return true if a variable has been used */ -- cgit v0.12