We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd66b4b commit 8c2b3d4Copy full SHA for 8c2b3d4
meson.build
@@ -77,4 +77,6 @@ if install
77
endif
78
79
# add the testsuite
80
-subdir('test')
+if get_option('testing').auto() ? not meson.is_subproject() : get_option('testing').enabled()
81
+ subdir('test')
82
+endif
meson_options.txt
@@ -32,3 +32,10 @@ option(
32
value: 'auto',
33
description: 'Support quadruple precision',
34
)
35
+
36
+option(
37
+ 'testing',
38
+ type: 'feature',
39
+ value: 'auto',
40
+ description: 'Enable testing of test-drive library',
41
+)
0 commit comments