mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -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> (cherry picked from commit451e735aa0) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Thomas Perale
parent
611e3fe80d
commit
8d47bca9a5
@@ -183,9 +183,9 @@ QT6BASE_DEPENDENCIES += freetype
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT6BASE_VULKAN),y)
|
||||
QT6BASE_DEPENDENCIES += vulkan-headers vulkan-loader
|
||||
QT6BASE_CONFIGURE_OPTS += -DFEATURE_vulkan=ON
|
||||
QT6BASE_CONF_OPTS += -DFEATURE_vulkan=ON
|
||||
else
|
||||
QT6BASE_CONFIGURE_OPTS += -DFEATURE_vulkan=OFF
|
||||
QT6BASE_CONF_OPTS += -DFEATURE_vulkan=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT6BASE_LINUXFB),y)
|
||||
|
||||
Reference in New Issue
Block a user