meson: added default_library=static as default option

This commit is contained in:
Florian "sp1rit"​ 2022-06-14 16:15:54 +02:00
parent 8e203b0da3
commit d179501c4f
No known key found for this signature in database
GPG Key ID: BA579378AC81FB05
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
project('Hyprland', 'cpp', 'c',
version : '0.1',
default_options : ['warning_level=3', 'cpp_std=c++20'])
default_options : ['warning_level=3', 'cpp_std=c++20', 'default_library=static'])
wlroots = subproject('wlroots', default_options: ['examples=false'])
have_xwlr = wlroots.get_variable('features').get('xwayland')