We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cddefd commit 9a5ae76Copy full SHA for 9a5ae76
meson.build
@@ -255,9 +255,17 @@ if jack_dep.found()
255
add_project_arguments('-DJACK', language: 'c')
256
endif
257
258
+### Define target
259
+is_exe = false
260
+foreach p : get_option('build_target')
261
+ if not is_exe and p != 'lib'
262
+ is_exe = true
263
+ endif
264
+endforeach
265
+
266
### Cava font
267
have_font = false
-if get_option('cava_font')
268
+if get_option('cava_font') and is_exe
269
if is_freebsd
270
vtfontcvt_prog = find_program('vtfontcvt', native: true)
271
psf2bdf_prog = find_program('psf2bdf', native: true)
0 commit comments