mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 15:50:33 -04:00
Fixes: [...] Build type: native build WARNING: Unknown options: "tests" The value of new options can be set with: [...] Reported by: antoine
14 lines
309 B
Text
14 lines
309 B
Text
--- meson.build.orig 2020-04-14 20:19:50 UTC
|
|
+++ meson.build
|
|
@@ -36,5 +36,9 @@ root_dir = include_directories('.')
|
|
subdir('libaccounts-glib')
|
|
subdir('tools')
|
|
subdir('data')
|
|
-subdir('docs')
|
|
-subdir('tests')
|
|
+if get_option('docs')
|
|
+ subdir('docs')
|
|
+endif
|
|
+if get_option('tests')
|
|
+ subdir('tests')
|
|
+endif
|