2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2011-11-11 09:00:49 +04:00
|
|
|
#ifndef cmNinjaTypes_h
|
2016-04-29 16:40:20 +03:00
|
|
|
#define cmNinjaTypes_h
|
|
|
|
|
2016-09-01 21:05:48 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2016-04-29 16:40:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2011-11-11 09:00:49 +04:00
|
|
|
|
|
|
|
typedef std::vector<std::string> cmNinjaDeps;
|
|
|
|
typedef std::map<std::string, std::string> cmNinjaVars;
|
|
|
|
|
|
|
|
#endif // ! cmNinjaTypes_h
|