@@ -140,9 +140,15 @@ if scdoc.found()
140
140
' sway/sway-output.5.scd' ,
141
141
' swaybar/swaybar-protocol.7.scd' ,
142
142
' swaymsg/swaymsg.1.scd' ,
143
- ' swaynag/swaynag.1.scd' ,
144
- ' swaynag/swaynag.5.scd' ,
145
143
]
144
+
145
+ if get_option (' swaynag' )
146
+ man_files += [
147
+ ' swaynag/swaynag.1.scd' ,
148
+ ' swaynag/swaynag.5.scd' ,
149
+ ]
150
+ endif
151
+
146
152
foreach filename : man_files
147
153
topic = filename.split(' .' )[- 3 ].split(' /' )[- 1 ]
148
154
section = filename.split(' .' )[- 2 ]
@@ -224,9 +230,15 @@ subdir('common')
224
230
subdir (' sway' )
225
231
subdir (' swaymsg' )
226
232
227
- subdir (' client' )
228
- subdir (' swaybar' )
229
- subdir (' swaynag' )
233
+ if get_option (' swaybar' ) or get_option (' swaynag' )
234
+ subdir (' client' )
235
+ endif
236
+ if get_option (' swaybar' )
237
+ subdir (' swaybar' )
238
+ endif
239
+ if get_option (' swaynag' )
240
+ subdir (' swaynag' )
241
+ endif
230
242
231
243
config = configuration_data ()
232
244
config.set(' datadir' , join_paths (prefix, datadir))
@@ -274,9 +286,13 @@ endif
274
286
if get_option (' bash-completions' )
275
287
bash_files = files (
276
288
' completions/bash/sway' ,
277
- ' completions/bash/swaybar' ,
278
289
' completions/bash/swaymsg' ,
279
290
)
291
+
292
+ if get_option (' swaybar' )
293
+ bash_files += files (' completions/bash/swaybar' )
294
+ endif
295
+
280
296
if bash_comp.found()
281
297
bash_install_dir = bash_comp.get_variable (
282
298
pkgconfig : ' completionsdir' ,
@@ -293,8 +309,12 @@ if get_option('fish-completions')
293
309
fish_files = files (
294
310
' completions/fish/sway.fish' ,
295
311
' completions/fish/swaymsg.fish' ,
296
- ' completions/fish/swaynag.fish' ,
297
312
)
313
+
314
+ if get_option (' swaynag' )
315
+ fish_files += files (' completions/fish/swaynag.fish' )
316
+ endif
317
+
298
318
if fish_comp.found()
299
319
fish_install_dir = fish_comp.get_variable (
300
320
pkgconfig : ' completionsdir' ,
0 commit comments