muon-build / muon

An implementation of the meson build system in c99
https://muon.build
GNU General Public License v3.0
166 stars 14 forks source link

Support precompiled header #51

Closed Curculigo closed 3 months ago

Curculigo commented 3 months ago

PCH is an optimization for build speed, unlike other optimizations like PGO or LTO that are optimizations for the final executable. PCH really helps during the development stage as it will reduce the time needed for each rebuild.

@annacrombie