fix: Install pkgconfig file only when INSTALL_HEADERS option is ON

This commit is contained in:
Andreas Schuh 2019-01-25 17:58:59 +00:00 committed by GitHub
parent 1005485222
commit 28f50e0fed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -568,11 +568,10 @@ if (INSTALL_HEADERS)
if (UNIX)
install (PROGRAMS src/gflags_completions.sh DESTINATION ${RUNTIME_INSTALL_DIR})
endif ()
endif ()
if (PKGCONFIG_INSTALL_DIR)
configure_file ("cmake/package.pc.in" "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}.pc" @ONLY)
install (FILES "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}.pc" DESTINATION "${PKGCONFIG_INSTALL_DIR}")
if (PKGCONFIG_INSTALL_DIR)
configure_file ("cmake/package.pc.in" "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}.pc" @ONLY)
install (FILES "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}.pc" DESTINATION "${PKGCONFIG_INSTALL_DIR}")
endif ()
endif ()
# ----------------------------------------------------------------------------