blueprint-compiler/meson_options.txt
Florian Müllner eb16b36405
build: Make tests optional
When used as a subproject, there is little point in adding tests
to the parent project's test suite. Even if the tests caught an
error, it wouldn't be in the position of fixing it.

So add a build option that allows parent projects to turn off tests.
2025-06-04 17:42:17 +02:00

2 lines
92 B
Meson

option('docs', type: 'boolean', value: false)
option('tests', type: 'boolean', value: true)