blob: f15f8d5f56811b5a41b3e5e95831d97740c7b4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
menu "Mouse drivers"
config BR2_PACKAGE_QT_MOUSE_PC
bool "pc"
config BR2_PACKAGE_QT_MOUSE_LINUXTP
bool "linuxtp"
config BR2_PACKAGE_QT_MOUSE_LINUXINPUT
bool "linux input"
config BR2_PACKAGE_QT_MOUSE_TSLIB
bool "tslib"
select BR2_PACKAGE_TSLIB
depends on !BR2_STATIC_LIBS # tslib
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 # tslib
comment "tslib support needs a toolchain w/ dynamic library, headers >= 3.12"
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
config BR2_PACKAGE_QT_MOUSE_QVFB
bool "qvfb"
comment "Mouse Options"
config BR2_PACKAGE_QT_MOUSE_NO_QWS_CURSOR
bool "Hide the mouse cursor"
help
Do not show the mouse cursor in QWS.
endmenu
|