Config.sql.in 735 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. menuconfig BR2_PACKAGE_QT_SQL_MODULE
  2. bool "SQL Module"
  3. help
  4. Compile Qt SQL Module
  5. if BR2_PACKAGE_QT_SQL_MODULE
  6. config BR2_PACKAGE_QT_MYSQL
  7. bool "MySQL Driver"
  8. help
  9. Build MySQL driver
  10. If unsure, say n.
  11. config BR2_PACKAGE_QT_IBASE
  12. bool "iBase Driver"
  13. help
  14. Build iBase driver
  15. If unsure, say n.
  16. config BR2_PACKAGE_QT_ODBC
  17. bool "ODBC Driver"
  18. help
  19. Build ODBC driver
  20. If unsure, say n.
  21. config BR2_PACKAGE_QT_PSQL
  22. bool "PostgreSQL Driver"
  23. help
  24. Build PostgreSQL driver
  25. If unsure, say n.
  26. config BR2_PACKAGE_QT_SQLITE
  27. bool "SQLite 3 Driver"
  28. help
  29. Build SQLite driver
  30. If unsure, say n.
  31. config BR2_PACKAGE_QT_SQLITE2
  32. bool "SQLite 2 Driver"
  33. help
  34. Build SQLite 2 driver
  35. If unsure, say n.
  36. endif