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