diff options
author | Erik Reider <[email protected]> | 2024-01-06 22:53:32 +0100 |
---|---|---|
committer | Erik Reider <[email protected]> | 2024-01-07 22:18:30 +0100 |
commit | cc83f41dbfc12af350c37f46677b82a64df801b8 (patch) | |
tree | 4f050bcb1a18179accd390749420d00714664691 /meson.build | |
parent | 3bdb35c3d635efcfc1d02da3ed13824409819c9a (diff) |
Compile wlroots subproject dep staticly
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index 8288a96..31da09e 100644 --- a/meson.build +++ b/meson.build @@ -92,14 +92,14 @@ wayland_server = dependency('wayland-server', default_options: wayland_project_options, ) -wlroots_options = [ 'examples=false' ] +wlroots_options = [ 'examples=false', 'default_library=static' ] wlroots_version = ['>=0.17.0', '<0.18.0'] -subproject( +wlroots_is_sub = subproject( 'wlroots', default_options: wlroots_options, required: false, version: wlroots_version, -) +).found() wlroots = dependency('wlroots', version: wlroots_version, default_options: wlroots_options, |