Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve build parallelism by compiling mrregister and mrtransform first
mrregister and mrtransform can take a long time to build. If their compilation starts towards the end of the build, Ninja may be compiling a single source file for quite sometime. This may result in suboptimal compilation times (due to part of the compilation not being multi-threaded). This hack tries to avoid this by starting their compilation as soon as possible (atm there's no alternative nice way of doing this in Ninja or CMake). See ninja-build/ninja#232
- Loading branch information