configs/imx6ulpico: Use common script for image generation
[buildroot-gz.git] / package / qt / Config.sql.in
blob452edd513301332fc01ebde8963a345e2293f7bb
1 menuconfig BR2_PACKAGE_QT_SQL_MODULE
2 bool "SQL Module"
3 help
4 Compile Qt SQL Module
6 if BR2_PACKAGE_QT_SQL_MODULE
7 config BR2_PACKAGE_QT_MYSQL
8 bool "MySQL Driver"
9 select BR2_PACKAGE_MYSQL
10 select BR2_PACKAGE_NCURSES
11 select BR2_PACKAGE_READLINE
12 depends on BR2_USE_MMU # mysql
13 help
14 Build MySQL driver
15 If unsure, say n.
17 config BR2_PACKAGE_QT_IBASE
18 bool "iBase Driver"
19 depends on BROKEN # libfbclient not in BR
20 help
21 Build iBase driver
22 If unsure, say n.
24 config BR2_PACKAGE_QT_ODBC
25 bool "ODBC Driver"
26 select BR2_PACKAGE_UNIXODBC
27 help
28 Build ODBC driver
29 If unsure, say n.
31 config BR2_PACKAGE_QT_PSQL
32 bool "PostgreSQL Driver"
33 select BR2_PACKAGE_POSTGRESQL
34 depends on !BR2_STATIC_LIBS
35 help
36 Build PostgreSQL driver
37 If unsure, say n.
39 comment "PostgreSQL driver needs a toolchain w/ dynamic library"
40 depends on BR2_STATIC_LIBS
42 choice
43 prompt "SQLite 3 support"
44 default BR2_PACKAGE_QT_SQLITE_NONE
45 help
46 Select SQLite support.
48 config BR2_PACKAGE_QT_SQLITE_NONE
49 bool "No sqlite support"
50 help
51 Do not compile any kind of SQLite support.
53 config BR2_PACKAGE_QT_SQLITE_QT
54 bool "Qt SQLite"
55 help
56 Use Qt bundled SQLite support.
58 config BR2_PACKAGE_QT_SQLITE_SYSTEM
59 bool "System SQLite"
60 select BR2_PACKAGE_SQLITE
61 help
62 Use system SQLite.
64 endchoice
66 endif