package/doxygen: disable shared libs for host

doxygen fails to build with BUILD_SHARED_LIBS=ON as it only
for some targets honors this flag and links the rest static.
So enforce BUILD_SHARED_LIBS=OFF for this package.

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Michael Nosthoff 2020-09-16 12:02:09 +02:00 committed by Thomas Petazzoni
parent 2ec692e863
commit 38e660af4b

View File

@ -11,4 +11,6 @@ DOXYGEN_LICENSE = GPL-2.0
DOXYGEN_LICENSE_FILES = LICENSE
HOST_DOXYGEN_DEPENDENCIES = host-flex host-bison
HOST_DOXYGEN_CONF_OPTS += -DBUILD_SHARED_LIBS=OFF
$(eval $(host-cmake-package))