Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meson: don't build test programs by default
They are only used when running tests, and are included as depedencies of the test cases themselves already. Marking them to not build by default, means that 291 compile edges can be skipped when only running ``` meson setup builddir/ ninja -C builddir/ meson install -C builddir/ ``` resulting in an overall much faster build. Instead they will be compiled on-demand by `meson test`, only for users that actually run the tests. Signed-off-by: Eli Schwartz <[email protected]> Message-ID: <[email protected]> Signed-off-by: David Gibson <[email protected]>
- Loading branch information