mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
a1ddf2d0ba
Automate the conversion with perl -i -0pe 's/typedef ([^;]*) ([^ ]+);/using $2 = $1;/g' then manually fix a few places.
65 lines
1.2 KiB
C++
65 lines
1.2 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmNinjaTypes_h
|
|
#define cmNinjaTypes_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <map>
|
|
#include <set>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
enum cmNinjaTargetDepends
|
|
{
|
|
DependOnTargetArtifact,
|
|
DependOnTargetOrdering
|
|
};
|
|
|
|
using cmNinjaDeps = std::vector<std::string>;
|
|
using cmNinjaOuts = std::set<std::string>;
|
|
using cmNinjaVars = std::map<std::string, std::string>;
|
|
|
|
class cmNinjaRule
|
|
{
|
|
public:
|
|
cmNinjaRule(std::string name)
|
|
: Name(std::move(name))
|
|
{
|
|
}
|
|
|
|
std::string Name;
|
|
std::string Command;
|
|
std::string Description;
|
|
std::string Comment;
|
|
std::string DepFile;
|
|
std::string DepType;
|
|
std::string RspFile;
|
|
std::string RspContent;
|
|
std::string Restat;
|
|
bool Generator = false;
|
|
};
|
|
|
|
class cmNinjaBuild
|
|
{
|
|
public:
|
|
cmNinjaBuild() = default;
|
|
cmNinjaBuild(std::string rule)
|
|
: Rule(std::move(rule))
|
|
{
|
|
}
|
|
|
|
std::string Comment;
|
|
std::string Rule;
|
|
cmNinjaDeps Outputs;
|
|
cmNinjaDeps ImplicitOuts;
|
|
cmNinjaDeps ExplicitDeps;
|
|
cmNinjaDeps ImplicitDeps;
|
|
cmNinjaDeps OrderOnlyDeps;
|
|
cmNinjaVars Variables;
|
|
std::string RspFile;
|
|
};
|
|
|
|
#endif // ! cmNinjaTypes_h
|