commit | 112a732a5a3cebb3cc1a03aa2fb32fa49130d8c5 | [log] [tgz] |
---|---|---|
author | colincross <github@colincross.com> | Wed Sep 19 16:45:40 2018 -0700 |
committer | GitHub <noreply@github.com> | Wed Sep 19 16:45:40 2018 -0700 |
tree | cede56552b4ddc5907d11da0d6d1d7082f0649f5 | |
parent | 442519429476c6b9b96541dd3f7ce487cd101163 [diff] | |
parent | a470612f97c0b8db00975bc19d2fe26e5801c6da [diff] |
Merge pull request #218 from colincross/glob_escapes Fix globs matching files with wildcard characters in the name
Blueprint is a meta-build system that reads in Blueprints files that describe modules that need to be built, and produces a Ninja manifest describing the commands that need to be run and their dependencies. Where most build systems use built-in rules or a domain-specific language to describe the logic for converting module descriptions to build rules, Blueprint delegates this to per-project build logic written in Go. For large, heterogenous projects this allows the inherent complexity of the build logic to be maintained in a high-level language, while still allowing simple changes to individual modules by modifying easy to understand Blueprints files.