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

0001 set(ofx_openSPIncludeDir "${EXT_INSTALL_DIR}/include/OpenSP")
0002 set(ofx_openSPLibDir "${EXT_INSTALL_DIR}/lib")
0003 
0004 ExternalProject_Add(
0005   ext_ofx
0006   DOWNLOAD_DIR ${EXT_DOWNLOAD_DIR}
0007   URL http://downloads.sourceforge.net/project/libofx/libofx/libofx-0.9.13.tar.gz
0008   URL_MD5 dde6276ffe2999f86bed5bf2cc80f7b2
0009 
0010   CONFIGURE_COMMAND <SOURCE_DIR>/configure --prefix=${EXT_INSTALL_DIR} ${AT_HOST} ${AT_SHARED_ONLY} --with-opensp-includes=${ofx_openSPIncludeDir} --with-opensp-libs=${ofx_openSPLibDir}
0011   BUILD_COMMAND $(MAKE)
0012   INSTALL_COMMAND $(MAKE) install
0013 
0014   DEPENDS ext_opensp
0015 )