Commit 58633266 authored by Lionel Landwerlin's avatar Lionel Landwerlin Committed by Peter Korsgaard
Browse files

directfb: added directfb tests installation option

parent 38b915c1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -98,4 +98,7 @@ config BR2_PACKAGE_DIRECTB_DITHER_RGB16
	  Enable dithering when loading images to RGB16 surfaces.
	  This increases the data section by 64 KBytes.

config BR2_PACKAGE_DIRECTB_TESTS
	bool "build directfb tests"

endif # BR2_PACKAGE_DIRECTFB
+8 −1
Original line number Diff line number Diff line
@@ -121,6 +121,12 @@ else
DIRECTFB_DITHER_RGB16:=--with-dither-rgb16=none
endif

ifeq ($(BR2_PACKAGE_DIRECTB_TESTS),y)
DIRECTFB_TESTS:=--with-tests
else
DIRECTFB_TESTS:=
endif

DIRECTFB_CONF_OPT = \
	--localstatedir=/var \
	--with-gfxdrivers=$(DIRECTFB_GFX) \
@@ -146,7 +152,8 @@ DIRECTFB_CONF_OPT = \
	--disable-sdl \
	--disable-vnc \
	--disable-video4linux \
	--disable-video4linux2
	--disable-video4linux2 \
	$(DIRECTFB_TESTS)

DIRECTFB_DEPENDENCIES = $(DIRECTFB_DEP) freetype $(DIRECTFB_FUSION)