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/cmTarget.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/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 69a00c1..47ec528 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -610,6 +610,7 @@ private: bool DLLPlatform; bool IsApple; bool IsImportedTarget; + bool DebugIncludesDone; mutable std::map<cmStdString, std::set<std::string> > LinkDependentProperties; mutable std::set<std::string> LinkImplicitNullProperties; |