diff options
author | William McKinnon <[email protected]> | 2023-01-18 01:49:26 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-18 01:49:26 -0500 |
commit | 588ea8e290a61a8a98e72617fd679689891e2e39 (patch) | |
tree | 128bf22c2f419c793e1a6b84ee03c91af4253629 /sway/meson.build | |
parent | 1baba77c74302b8c1f212e851f194deae0fae46b (diff) |
feat: Add box shadows (#64)
Co-authored-by: Erik Reider <[email protected]>
Diffstat (limited to 'sway/meson.build')
-rw-r--r-- | sway/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/meson.build b/sway/meson.build index 12362fcd..757d0c99 100644 --- a/sway/meson.build +++ b/sway/meson.build @@ -106,6 +106,9 @@ sway_sources = files( 'commands/seat/shortcuts_inhibitor.c', 'commands/seat/xcursor_theme.c', 'commands/set.c', + 'commands/shadow_blur_radius.c', + 'commands/shadow_color.c', + 'commands/shadows.c', 'commands/show_marks.c', 'commands/shortcuts_inhibitor.c', 'commands/smart_borders.c', @@ -250,3 +253,4 @@ executable( link_with: [lib_sway_common], install: true ) + |