Add include guard for cmGeneratorExpression.

This commit is contained in:
Stephen Kelly 2012-09-20 00:18:23 +02:00
parent 0ff4e3f0b8
commit c6abc41eb5
1 changed files with 6 additions and 0 deletions

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