Warning, /office/kmymoney/3rdparty/ext_postgresql/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 ExternalProject_Add(
0002   ext_postgresql
0003   DOWNLOAD_DIR ${EXT_DOWNLOAD_DIR}
0004   URL https://ftp.postgresql.org/pub/source/v11.0/postgresql-11.0.tar.bz2
0005   URL_MD5 338ede84c0443db02ff6e8c4c8cbc5e9
0006 
0007   CONFIGURE_COMMAND <SOURCE_DIR>/configure --prefix=${EXT_INSTALL_DIR} --with-libxml --with-libxslt --with-icu --with-tcl --enable-thread-safety --without-readline --with-openssl --with-libraries=${EXT_INSTALL_DIR}/lib --with-includes=${EXT_INSTALL_DIR}/include CPPFLAGS=${AT_CPP_FLAGS} LDFLAGS=${AT_LD_FLAGS}
0008   BUILD_COMMAND rsync -a --ignore-existing src/backend/utils/ src/include/utils/
0009   COMMAND       rsync -a --ignore-existing src/backend/catalog/ src/include/catalog/
0010   COMMAND $(MAKE) -C src/bin install
0011   COMMAND $(MAKE) -C src/include install
0012   COMMAND $(MAKE) -C src/interfaces install
0013   INSTALL_COMMAND ""
0014   UPDATE_COMMAND ""
0015   BUILD_IN_SOURCE 1
0016   DEPENDS ext_readline ext_tcl ext_xslt ext_openssl
0017 )