Pkg-config file changed back to "vmime.pc" (fixed issue #35).

Do not break compatibility with previous releases.
This commit is contained in:
Vincent Richard 2013-03-24 20:28:36 +01:00
parent c42a46e074
commit f381654277
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -23,7 +23,7 @@ doc/html/*
/Makefile /Makefile
/install_manifest* /install_manifest*
/libvmime.a /libvmime.a
/libvmime.pc /vmime.pc
/vmime/config.hpp /vmime/config.hpp
/COPYING.txt /COPYING.txt
/build/ /build/

View File

@ -825,8 +825,8 @@ ENDIF()
CONFIGURE_FILE(cmake/config.hpp.cmake ${CMAKE_SOURCE_DIR}/vmime/config.hpp) CONFIGURE_FILE(cmake/config.hpp.cmake ${CMAKE_SOURCE_DIR}/vmime/config.hpp)
# PkgConfig post-configuration # PkgConfig post-configuration
CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/libvmime.pc.in ${CMAKE_BINARY_DIR}/libvmime.pc @ONLY) CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/vmime.pc.in ${CMAKE_BINARY_DIR}/vmime.pc @ONLY)
INSTALL(FILES ${CMAKE_BINARY_DIR}/libvmime.pc DESTINATION "${VMIME_INSTALL_LIBDIR}/pkgconfig" COMPONENT headers) INSTALL(FILES ${CMAKE_BINARY_DIR}/vmime.pc DESTINATION "${VMIME_INSTALL_LIBDIR}/pkgconfig" COMPONENT headers)
INCLUDE(CPack) INCLUDE(CPack)