diff options
-rw-r--r-- | meson.build | 4 | ||||
-rw-r--r-- | meson_options.txt | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/meson.build b/meson.build index d9df470a..4c705a7a 100644 --- a/meson.build +++ b/meson.build @@ -411,3 +411,7 @@ summary({ }, section : 'Testing' ) + +if get_option('autobahn') + subdir('tests/autobahn') +endif diff --git a/meson_options.txt b/meson_options.txt index 3a7bae5c..6462fa9f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -59,6 +59,12 @@ option('tests', description: 'Enable unit tests compilation' ) +option('autobahn', + type: 'boolean', + value: 'true', + description: 'Enable autobahn client compilation' +) + option('installed_tests', type: 'boolean', value: false, |