Config.in 621 B

12345678910111213141516
  1. config BR2_PACKAGE_CPPDB
  2. bool "cppdb"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. # Can be built without them but it's useless
  6. depends on BR2_PACKAGE_MYSQL_CLIENT || BR2_PACKAGE_SQLITE
  7. help
  8. CppDB is an SQL connectivity library that is designed to provide
  9. platform and Database independent connectivity API similarly
  10. to what JDBC, ODBC and other connectivity libraries do.
  11. http://cppcms.com/sql/cppdb/
  12. comment "cppdb needs a toolchain w/ C++, threads"
  13. depends on BR2_PACKAGE_MYSQL_CLIENT || BR2_PACKAGE_SQLITE
  14. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS