@@ -76,6 +76,7 @@ gtkmm = dependency('gtkmm-4.0', version : ['>=4.12.0'])
76
76
giounix = dependency (' gio-unix-2.0' , version : [' >=2.76.4' ])
77
77
spdlog = dependency (' spdlog' , version : [' >=1.10.0' ], fallback : [' spdlog' , ' spdlog_dep' ], default_options : [' external_fmt=enabled' ])
78
78
libudev = dependency (' libudev' , required : get_option (' libudev' ))
79
+ xkbregistry = dependency (' xkbregistry' )
79
80
80
81
gtk_layer_shell = dependency (' gtk4-layer-shell-0' ,
81
82
version : [' >=1.0.2' ],
@@ -125,6 +126,8 @@ src_files = files(
125
126
' src/util/prepare_for_sleep.cpp' ,
126
127
' src/AModule.cpp' ,
127
128
' src/ALabel.cpp' ,
129
+ ' src/AIconLabel.cpp' ,
130
+ ' src/AAppIconLabel.cpp' ,
128
131
' src/factory.cpp' ,
129
132
' src/util/ustring_clen.cpp' ,
130
133
' src/group.cpp' ,
@@ -133,7 +136,8 @@ src_files = files(
133
136
' src/modules/load.cpp' ,
134
137
' src/modules/disk.cpp' ,
135
138
' src/modules/temperature.cpp' ,
136
- ' src/modules/idle_inhibitor.cpp'
139
+ ' src/modules/idle_inhibitor.cpp' ,
140
+ ' src/util/rewrite_string.cpp'
137
141
)
138
142
139
143
man_files = files (
@@ -230,6 +234,21 @@ elif is_dragonfly or is_freebsd or is_netbsd or is_openbsd
230
234
endif
231
235
endif
232
236
237
+ add_project_arguments (' -DHAVE_SWAY' , language : ' cpp' )
238
+ src_files += files (' src/modules/sway/ipc/client.cpp' ,
239
+ ' src/modules/sway/bar.cpp' ,
240
+ ' src/modules/sway/mode.cpp' ,
241
+ ' src/modules/sway/language.cpp' ,
242
+ ' src/modules/sway/window.cpp' ,
243
+ ' src/modules/sway/workspaces.cpp' ,
244
+ ' src/modules/sway/scratchpad.cpp' )
245
+
246
+ man_files += files (' man/waybar-sway-language.5.scd' ,
247
+ ' man/waybar-sway-mode.5.scd' ,
248
+ ' man/waybar-sway-scratchpad.5.scd' ,
249
+ ' man/waybar-sway-window.5.scd' ,
250
+ ' man/waybar-sway-workspaces.5.scd' )
251
+
233
252
add_project_arguments (' -DHAVE_DWL' , language : ' cpp' )
234
253
src_files += files (' src/modules/dwl/tags.cpp' )
235
254
man_files += files (' man/waybar-dwl-tags.5.scd' )
@@ -262,6 +281,7 @@ executable(
262
281
wayland_cursor,
263
282
client_protos,
264
283
spdlog,
284
+ xkbregistry,
265
285
cava
266
286
],
267
287
include_directories : inc_dirs,
0 commit comments