test: Only build tests when needed
Change-Id: I3f5c3956bf06939420b0e36f556f79327473bb81
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/test/meson.build b/test/meson.build
index a748b70..9beb66f 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -25,6 +25,7 @@
foreach t : gtests
test(t, executable(t.underscorify(), t + '.cpp',
+ build_by_default: false,
implicit_include_directories: false,
dependencies: [stdplus, gtest, gmock]))
endforeach
@@ -64,6 +65,7 @@
foreach t : catch2_tests
test(t, executable(t.underscorify(), t + '.cpp',
+ build_by_default: false,
implicit_include_directories: false,
link_with: libcatch2,
dependencies: [stdplus, catch2_dep]))