| Crates.io | msb |
| lib.rs | msb |
| version | 0.1.3 |
| created_at | 2025-02-11 18:33:27.156713+00 |
| updated_at | 2025-02-13 13:33:16.561841+00 |
| description | Build system in Rust |
| homepage | |
| repository | https://github.com/prodbysky/msb |
| max_upload_size | |
| id | 1551794 |
| size | 23,455 |
A build system made purely for educational purposes Supports incremental builds.
See scuffed examples in examples/
target <Name> |outputs(...)|[files(...) targets(...)] {
<Shell commands>
}
<More targets>
Name as a alphanumeric identifier Identifiers in outputs, files can be any valid file path
target main outputs(main) [files(main.c), targets()] {
gcc main.c -o main
}
The outputs spec. can be ommited