Make cli build optional but on by default

This commit is contained in:
King_DuckZ 2025-04-07 22:53:54 +01:00
commit 5f5518bb88
2 changed files with 5 additions and 1 deletions

1
meson.options Normal file
View file

@ -0,0 +1 @@
option('build_tools', type: 'boolean', value: true, description: 'Enable or disable building the cli tools')

View file

@ -1,2 +1,5 @@
subdir('ducktorrent')
subdir('cli')
if get_option('build_tools')
subdir('cli')
endif