You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixeswaycrate#101
Why?
- no build.rs that is invoked on _any_ `cargo build/run`
- no extra dev dependency
- no intermediate `docs/*.out` files
- 3 lines of bash instead
- maximum gzip compression (-9/--best)
- docs will be built only when needed,
i.e. on `make docs` or `make install`
To quickly check:
```sh
make TARGET_DIR=/tmp/wayshot MAN{1,7}_DIR=/tmp/wayshot install
```
Fixeswaycrate#101
Why?
- no build.rs that is invoked on _any_ `cargo build/run`
- no extra dev dependency
- no intermediate `docs/*.out` files
- 3 lines of bash instead
- maximum gzip compression (-9/--best)
- docs will be built only when needed,
i.e. on `make docs` or `make install`
To quickly check:
```sh
make TARGET_DIR=/tmp/wayshot MAN{1,7}_DIR=/tmp/wayshot install
```
Current
build.rs
is misused and slows down iteration time, because it only builds docs and doesn't need to run on any change to sources.In my case, for around ~3 seconds while I work on #95 and #100
Solutions are well known:
rerun-if-changed
fordocs/*.scd
filesThe text was updated successfully, but these errors were encountered: