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 /types/meson.build | |
parent | 3bdb35c3d635efcfc1d02da3ed13824409819c9a (diff) |
Compile wlroots subproject dep staticly
Diffstat (limited to 'types/meson.build')
-rw-r--r-- | types/meson.build | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/types/meson.build b/types/meson.build index 0527b7c..29e9c36 100644 --- a/types/meson.build +++ b/types/meson.build @@ -1,7 +1,12 @@ wlr_files += files( - 'output/wlr_output.c', 'scene/wlr_scene.c', - 'buffer/buffer.c', ) +if not wlroots_is_sub + wlr_files += files([ + 'output/wlr_output.c', + 'buffer/buffer.c', + ]) +endif + subdir('fx') |