[M6] manifest: add dev_dependencies and [build].include_dirs

This commit is contained in:
2026-05-13 23:53:23 +00:00
parent 654fd8d245
commit 1e6667a20a
6 changed files with 124 additions and 25 deletions

View File

@@ -16,6 +16,7 @@ struct Dependency {
struct BuildSettings {
bool warnings_as_errors = false;
std::vector<std::string> sanitizers;
std::vector<std::string> include_dirs;
bool operator==(const BuildSettings&) const = default;
};
@@ -35,6 +36,7 @@ struct Package {
struct Manifest {
Package package;
std::vector<Dependency> dependencies;
std::vector<Dependency> dev_dependencies;
BuildSettings build;
bool operator==(const Manifest&) const = default;