Skip to content

Commit 2dcdd64

Browse files
authored
libcvc/meson.build: fix building with alsa. (#207)
1 parent a25a88e commit 2dcdd64

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

libcvc/meson.build

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cvc_deps = [
2727
]
2828

2929
if use_alsa
30-
libcvc_deps += dependency('alsa')
30+
cvc_deps += dependency('alsa')
3131
endif
3232

3333
libcvc_headers = [
@@ -82,8 +82,7 @@ if use_alsa
8282
executable('test-audio-device-selection',
8383
sources: 'test-audio-device-selection.c',
8484
link_with: libcvc,
85-
dependencies: libcvc_deps,
86-
c_args: c_args
85+
dependencies: cvc_deps
8786
)
8887
endif
8988

0 commit comments

Comments
 (0)