mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/qt6/qt6base: use correct QT6BASE_CONF_OPTS variable for Vulkan
The Vulkan option was appended to QT6BASE_CONFIGURE_OPTS instead of
QT6BASE_CONF_OPTS, which is the variable actually used during CMake
configuration. This prevented the feature from being enabled/disabled
as expected.
Fixes: 1c27f3a12d ("package/qt6base: add vulkan option")
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
cea219e518
commit
451e735aa0
@@ -183,9 +183,9 @@ QT6BASE_DEPENDENCIES += freetype
|
|||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_QT6BASE_VULKAN),y)
|
ifeq ($(BR2_PACKAGE_QT6BASE_VULKAN),y)
|
||||||
QT6BASE_DEPENDENCIES += vulkan-headers vulkan-loader
|
QT6BASE_DEPENDENCIES += vulkan-headers vulkan-loader
|
||||||
QT6BASE_CONFIGURE_OPTS += -DFEATURE_vulkan=ON
|
QT6BASE_CONF_OPTS += -DFEATURE_vulkan=ON
|
||||||
else
|
else
|
||||||
QT6BASE_CONFIGURE_OPTS += -DFEATURE_vulkan=OFF
|
QT6BASE_CONF_OPTS += -DFEATURE_vulkan=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_QT6BASE_LINUXFB),y)
|
ifeq ($(BR2_PACKAGE_QT6BASE_LINUXFB),y)
|
||||||
|
|||||||
Reference in New Issue
Block a user