Added dependencies filter
This commit is contained in:
@@ -415,6 +415,10 @@ template <> struct convert<filter> {
|
||||
if (node["dependants"])
|
||||
rhs.dependants = node["dependants"].as<decltype(rhs.dependants)>();
|
||||
|
||||
if (node["dependencies"])
|
||||
rhs.dependencies =
|
||||
node["dependencies"].as<decltype(rhs.dependencies)>();
|
||||
|
||||
if (node["context"])
|
||||
rhs.context = node["context"].as<decltype(rhs.context)>();
|
||||
|
||||
|
||||
@@ -74,6 +74,8 @@ struct filter {
|
||||
|
||||
std::vector<std::string> dependants;
|
||||
|
||||
std::vector<std::string> dependencies;
|
||||
|
||||
std::vector<std::string> context;
|
||||
|
||||
std::vector<std::filesystem::path> paths;
|
||||
|
||||
Reference in New Issue
Block a user