Config.in 463 B

1234567891011121314
  1. config BR2_PACKAGE_SQLITECPP
  2. bool "sqlitecpp"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  5. select BR2_PACKAGE_SQLITE
  6. select BR2_PACKAGE_SQLITE_ENABLE_COLUMN_METADATA
  7. help
  8. SQLiteC++ (SQLiteCpp) is a lean and easy to use
  9. C++ SQLite3 wrapper.
  10. https://github.com/SRombauts/SQLiteCpp
  11. comment "sqlitecpp needs a toolchain w/ C++11, gcc >= 4.9"
  12. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9