You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
594 B

  1. menu "Options"
  2. depends on PACKAGE_libpqxx
  3. config LIBPQXX_STATIC
  4. bool "Build static library"
  5. default y
  6. help
  7. Build static (.a) library
  8. config LIBPQXX_SHARED
  9. bool "Build and install shared library"
  10. default n
  11. help
  12. Build and install shared (.so) library
  13. config LIBPQXX_INSTALL_TEST
  14. bool "Build and install test suite"
  15. default n
  16. depends on LIBPQXX_STATIC || LIBPQXX_SHARED
  17. help
  18. Build and install a test suite against a real server.
  19. One can run this suite on a target platform to ensure
  20. that the library is built the way it should and operating
  21. correctly.
  22. endmenu