diff --git a/CMakeLists.txt b/CMakeLists.txt index bd0cabd04b..dcdfc7e12f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -486,7 +486,6 @@ if(NOT EXISTS "${CMAKE_SOURCE_DIR}/configure") configure_file(${CMAKE_SOURCE_DIR}/src/odbc/version.rc.in ${CMAKE_SOURCE_DIR}/src/odbc/version.rc) endif(NOT EXISTS "${CMAKE_SOURCE_DIR}/configure") - set(FREETDS_PUBLIC_INCLUDE ${CMAKE_SOURCE_DIR}/include/bkpublic.h ${CMAKE_SOURCE_DIR}/include/cspublic.h diff --git a/src/ctlib/CMakeLists.txt b/src/ctlib/CMakeLists.txt index e83b0b1a42..2dcb7f9bb2 100644 --- a/src/ctlib/CMakeLists.txt +++ b/src/ctlib/CMakeLists.txt @@ -32,9 +32,17 @@ if(MINGW OR CYGWIN) set_target_properties(ct PROPERTIES LINK_FLAGS "--static") endif(MINGW OR CYGWIN) +#generate the .pc file +set(prefix "${CMAKE_INSTALL_PREFIX}") +set(version, CMAKE_PROJECT_VERSION) +string(REPLACE ";" " -l" CTLIBS_PRIVATE "${lib_NETWORK}") +set(libs_private "-l${CTLIBS_PRIVATE}") +configure_file(ctlib.pc.in ctlib.pc @ONLY) + INSTALL(TARGETS ct ct-static PUBLIC_HEADER DESTINATION include - RUNTIME DESTINATION bin - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - ) + RUNTIME DESTINATION bin + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib +) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ctlib.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) diff --git a/src/ctlib/ctlib.pc.in b/src/ctlib/ctlib.pc.in new file mode 100644 index 0000000000..f6c3ed0a34 --- /dev/null +++ b/src/ctlib/ctlib.pc.in @@ -0,0 +1,21 @@ +# +# pkg_config.pc.in +# +# pkg_config configuration file +# For a detailed description of options, please visit +# Dan Nicholson’s Guide to pkg-config (https://www.freedesktop.org/wiki/Software/pkg-config/) +# + +prefix="@prefix@" +includedir=${prefix}/include +libdir=${prefix}/lib/ + +Name: CT-library +Version: @version@ +Description: A free implementation of TDS protocol +URL: https://github.com/FreeTDS/freetds +Requires: +Requires.private: libssl, libcrypto, iconv +Cflags: -I${includedir}/freetds +Libs: -L${libdir} -lct +Libs.private: @libs_private@ diff --git a/src/dblib/CMakeLists.txt b/src/dblib/CMakeLists.txt index 5f1766f45f..10647164a3 100644 --- a/src/dblib/CMakeLists.txt +++ b/src/dblib/CMakeLists.txt @@ -27,9 +27,17 @@ if(MINGW OR CYGWIN) set_target_properties(sybdb PROPERTIES LINK_FLAGS "--static") endif(MINGW OR CYGWIN) +#generate the .pc file +set(prefix "${CMAKE_INSTALL_PREFIX}") +set(version, CMAKE_PROJECT_VERSION) +string(REPLACE ";" " -l" DBLIBS_PRIVATE "${lib_NETWORK}") +set(libs_private "-l${DBLIBS_PRIVATE}") +configure_file(dblib.pc.in dblib.pc @ONLY) + INSTALL(TARGETS sybdb db-lib PUBLIC_HEADER DESTINATION include - RUNTIME DESTINATION bin - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - ) + RUNTIME DESTINATION bin + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib +) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/dblib.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) \ No newline at end of file diff --git a/src/dblib/dblib.pc.in b/src/dblib/dblib.pc.in new file mode 100644 index 0000000000..a25d66809b --- /dev/null +++ b/src/dblib/dblib.pc.in @@ -0,0 +1,21 @@ +# +# pkg_config.pc.in +# +# pkg_config configuration file +# For a detailed description of options, please visit +# Dan Nicholson’s Guide to pkg-config (https://www.freedesktop.org/wiki/Software/pkg-config/) +# + +prefix="@prefix@" +includedir=${prefix}/include +libdir=${prefix}/lib/ + +Name: DB-library +Version: @version@ +Description: A free implementation of TDS protocol +URL: https://github.com/FreeTDS/freetds +Requires: +Requires.private: libssl, libcrypto, iconv +Cflags: -I${includedir}/freetds +Libs: -L${libdir} -lsybdb +Libs.private: @libs_private@