python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / qt / Config.sql.in
blob5bd63d27a00a3327b19f1d44d978c80ef5dc3311
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_ODBC
18 bool "ODBC Driver"
19 select BR2_PACKAGE_UNIXODBC
20 help
21 Build ODBC driver
22 If unsure, say n.
24 config BR2_PACKAGE_QT_PSQL
25 bool "PostgreSQL Driver"
26 select BR2_PACKAGE_POSTGRESQL
27 depends on !BR2_STATIC_LIBS
28 help
29 Build PostgreSQL driver
30 If unsure, say n.
32 comment "PostgreSQL driver needs a toolchain w/ dynamic library"
33 depends on BR2_STATIC_LIBS
35 choice
36 prompt "SQLite 3 support"
37 default BR2_PACKAGE_QT_SQLITE_NONE
38 help
39 Select SQLite support.
41 config BR2_PACKAGE_QT_SQLITE_NONE
42 bool "No sqlite support"
43 help
44 Do not compile any kind of SQLite support.
46 config BR2_PACKAGE_QT_SQLITE_QT
47 bool "Qt SQLite"
48 help
49 Use Qt bundled SQLite support.
51 config BR2_PACKAGE_QT_SQLITE_SYSTEM
52 bool "System SQLite"
53 select BR2_PACKAGE_SQLITE
54 help
55 Use system SQLite.
57 endchoice
59 endif