1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-24 03:02:46 +08:00

Add include guard for cmGeneratorExpression.

This commit is contained in:
Stephen Kelly
2012-09-20 00:18:23 +02:00
parent 0ff4e3f0b8
commit c6abc41eb5

View File

@@ -9,6 +9,10 @@
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
#ifndef cmGeneratorExpression_h
#define cmGeneratorExpression_h
#include "cmStandardIncludes.h"
#include <stack>
@@ -80,3 +84,5 @@ private:
mutable std::set<cmTarget*> Targets;
mutable std::string Output;
};
#endif