mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-11 13:30:05 -05:00
Add --with-ctl-plugins configure option
Added --with-ctl-plugins configure option to specify the optinal plugins to build.
This commit is contained in:
parent
c16111516f
commit
77b4d5f97a
3 changed files with 45 additions and 3 deletions
|
|
@ -1,8 +1,13 @@
|
|||
EXTRA_LTLIBRARIES = libcontrol.la
|
||||
|
||||
libcontrol_la_SOURCES = cards.c namehint.c hcontrol.c \
|
||||
control.c control_hw.c control_shm.c \
|
||||
control_ext.c setup.c control_symbols.c
|
||||
control.c control_hw.c setup.c control_symbols.c
|
||||
if BUILD_CTL_PLUGIN_SHM
|
||||
libcontrol_la_SOURCES += control_shm.c
|
||||
endif
|
||||
if BUILD_CTL_PLUGIN_EXT
|
||||
libcontrol_la_SOURCES += control_ext.c
|
||||
endif
|
||||
|
||||
noinst_HEADERS = control_local.h
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue