CreatePkgConfigFile.cmake 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. # - Generate a libarchive.pc like autotools for pkg-config
  2. #
  3. # Set the required variables (we use the same input file as autotools)
  4. SET(prefix ${CMAKE_INSTALL_PREFIX})
  5. SET(exec_prefix \${prefix})
  6. SET(libdir \${exec_prefix}/lib)
  7. SET(includedir \${prefix}/include)
  8. # Now, this is not particularly pretty, nor is it terribly accurate...
  9. # Loop over all our additional libs
  10. FOREACH(mylib ${ADDITIONAL_LIBS})
  11. # Extract the filename from the absolute path
  12. GET_FILENAME_COMPONENT(mylib_name ${mylib} NAME_WE)
  13. # Strip the lib prefix
  14. STRING(REGEX REPLACE "^lib" "" mylib_name ${mylib_name})
  15. # Append it to our LIBS string
  16. SET(LIBS "${LIBS} -l${mylib_name}")
  17. ENDFOREACH()
  18. # libxml2 is easier, since it's already using pkg-config
  19. FOREACH(mylib ${PC_LIBXML_STATIC_LDFLAGS})
  20. SET(LIBS "${LIBS} ${mylib}")
  21. ENDFOREACH()
  22. # FIXME: The order of the libraries doesn't take dependencies into account,
  23. # thus there's a good chance it'll make some binutils versions unhappy...
  24. # This only affects Libs.private (looked up for static builds) though.
  25. CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/build/pkgconfig/libarchive.pc.in
  26. ${CMAKE_CURRENT_SOURCE_DIR}/build/pkgconfig/libarchive.pc
  27. @ONLY)
  28. # And install it, of course ;).
  29. IF(ENABLE_INSTALL)
  30. INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/build/pkgconfig/libarchive.pc
  31. DESTINATION "lib/pkgconfig")
  32. ENDIF()