summaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
authorErik Reider <[email protected]>2024-05-08 11:32:13 +0200
committerGitHub <[email protected]>2024-05-08 11:32:13 +0200
commit1cdb05e9d0256f6b8942a7436b539ad87fbcf366 (patch)
tree96a5ce17c44b4963f3b72e9cc6e8a0d1955638b5 /types
parent0abffbe6def159d72f8f00302d6c8f9f8250f580 (diff)
meson.build spring cleaning (#49)
* Cleaned meson options * Only look for wlroots subproject if dep isn't found * Renamed wlr variables to scenefx ones
Diffstat (limited to 'types')
-rw-r--r--types/fx/meson.build2
-rw-r--r--types/meson.build11
2 files changed, 4 insertions, 9 deletions
diff --git a/types/fx/meson.build b/types/fx/meson.build
index 2170f35..3932965 100644
--- a/types/fx/meson.build
+++ b/types/fx/meson.build
@@ -1,4 +1,4 @@
-wlr_files += files(
+scenefx_files += files(
'shadow_data.c',
'blur_data.c',
)
diff --git a/types/meson.build b/types/meson.build
index 29e9c36..c0296eb 100644
--- a/types/meson.build
+++ b/types/meson.build
@@ -1,12 +1,7 @@
-wlr_files += files(
+scenefx_files += files(
'scene/wlr_scene.c',
+ 'output/wlr_output.c',
+ 'buffer/buffer.c',
)
-if not wlroots_is_sub
- wlr_files += files([
- 'output/wlr_output.c',
- 'buffer/buffer.c',
- ])
-endif
-
subdir('fx')