| 
					
				 | 
			
			
				@@ -542,8 +542,14 @@ public: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   void SetWarnUnusedCli(bool b) { this->WarnUnusedCli = b; } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   bool GetCheckSystemVars() const { return this->CheckSystemVars; } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   void SetCheckSystemVars(bool b) { this->CheckSystemVars = b; } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  bool GetIgnoreWarningAsError() const { return this->IgnoreWarningAsError; } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  void SetIgnoreWarningAsError(bool b) { this->IgnoreWarningAsError = b; } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  bool GetIgnoreCompileWarningAsError() const 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return this->IgnoreCompileWarningAsError; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  void SetIgnoreCompileWarningAsError(bool b) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    this->IgnoreCompileWarningAsError = b; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   void MarkCliAsUsed(const std::string& variable); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -753,7 +759,7 @@ private: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   bool WarnUninitialized = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   bool WarnUnusedCli = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   bool CheckSystemVars = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  bool IgnoreWarningAsError = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  bool IgnoreCompileWarningAsError = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   std::map<std::string, bool> UsedCliVariables; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   std::string CMakeEditCommand; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   std::string CXXEnvironment; 
			 |