blob: c8407d87ab0a6061bdb82d70142154430994bef3 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001menu "Options"
2 depends on PACKAGE_libpqxx
3
4config LIBPQXX_STATIC
5 bool "Build static library"
6 default y
7 help
8 Build static (.a) library
9
10config LIBPQXX_SHARED
11 bool "Build and install shared library"
12 default n
13 help
14 Build and install shared (.so) library
15
16config 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
26endmenu