diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-01-20 11:50:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-01-21 08:12:22 (GMT) |
commit | d70204a86aa3e454e73049efda3e1ccea8c60720 (patch) | |
tree | 45bc8dd5a0184c82be312492e20eed5c99a7d146 /Source/cmMakefile.h | |
parent | 0d46e9a0297d78dabc9988604a15c0096c702855 (diff) | |
download | CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.zip CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.tar.gz CMake-d70204a86aa3e454e73049efda3e1ccea8c60720.tar.bz2 |
Only output includes once after the start of 'generate-time' when debugging.
During configure-time, GetIncludeDirectories may be called too, for example
if using the export() command. As the content can be different, it should
be output each time then.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index bb161b1..a2783f2 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -870,6 +870,9 @@ public: return this->IncludeDirectoriesEntries; } + bool IsGeneratingBuildSystem(){ return this->GeneratingBuildSystem; } + void SetGeneratingBuildSystem(){ this->GeneratingBuildSystem = true; } + protected: // add link libraries and directories to the target void AddGlobalLinkInformation(const char* name, cmTarget& target); @@ -1019,6 +1022,9 @@ private: // Enforce rules about CMakeLists.txt files. void EnforceDirectoryLevelRules(); + + bool GeneratingBuildSystem; + }; //---------------------------------------------------------------------------- |