mirror of
https://github.com/openwrt/video.git
synced 2025-12-21 17:04:37 +04:00
The choice for the config option 'BUILD_qt5base-gui_OPENGL_OPENGLES2' and 'BUILD_qt5base-gui_OPENGL_NONE' should only be visible if 'qt5base-gui' is selected. This also applies to the default value if 'qt5base-gui' is not selected. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
30 lines
756 B
Plaintext
30 lines
756 B
Plaintext
config BUILD_qt5base-core_INOTIFY
|
|
bool "Use native inotify support on Linux"
|
|
depends on PACKAGE_qt5base-core
|
|
default y
|
|
help
|
|
"Compiles qt5's QFileSystemWatcher with support for inotify on Linux. Otherwise QFileSystemWatcher uses polling as fallback."
|
|
|
|
config BUILD_qt5base-network_SSL
|
|
bool "Include native SSL support"
|
|
depends on PACKAGE_qt5base-network
|
|
default y
|
|
|
|
config BUILD_qt5base-gui_DRM
|
|
bool "Include DRM support"
|
|
depends on PACKAGE_qt5base-gui
|
|
default y
|
|
|
|
choice
|
|
prompt "Which OpenGL variant to use"
|
|
default BUILD_qt5base-gui_OPENGL_NONE
|
|
depends on PACKAGE_qt5base-gui
|
|
|
|
config BUILD_qt5base-gui_OPENGL_OPENGLES2
|
|
bool "es2"
|
|
|
|
config BUILD_qt5base-gui_OPENGL_NONE
|
|
bool "no"
|
|
|
|
endchoice
|