2016-09-27 19:01:08 +00: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 05:00:49 +00:00
|
|
|
#ifndef cmNinjaTypes_h
|
2016-04-29 13:40:20 +00:00
|
|
|
#define cmNinjaTypes_h
|
|
|
|
|
2017-04-11 20:00:21 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2016-11-05 20:40:14 +00:00
|
|
|
#include <map>
|
2017-08-31 21:48:02 +00:00
|
|
|
#include <set>
|
2016-11-05 20:40:14 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2011-11-11 05:00:49 +00:00
|
|
|
|
2017-04-17 20:24:44 +00:00
|
|
|
enum cmNinjaTargetDepends
|
|
|
|
{
|
|
|
|
DependOnTargetArtifact,
|
|
|
|
DependOnTargetOrdering
|
|
|
|
};
|
|
|
|
|
2011-11-11 05:00:49 +00:00
|
|
|
typedef std::vector<std::string> cmNinjaDeps;
|
2017-08-31 21:48:02 +00:00
|
|
|
typedef std::set<std::string> cmNinjaOuts;
|
2011-11-11 05:00:49 +00:00
|
|
|
typedef std::map<std::string, std::string> cmNinjaVars;
|
|
|
|
|
|
|
|
#endif // ! cmNinjaTypes_h
|