[pstl] Do not install the __config_site.in file

The generated version of the file is already installed -- we shouldn't
install the pre-generation version of the file.
This commit is contained in:
Louis Dionne 2020-07-08 14:51:30 -04:00
parent 1265eb2d5f
commit ef14e52be4

View File

@ -86,7 +86,8 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfigVersion.cmake" "${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfigVersion.cmake"
DESTINATION lib/cmake/ParallelSTL) DESTINATION lib/cmake/ParallelSTL)
install(DIRECTORY include/ install(DIRECTORY include/
DESTINATION include) DESTINATION include
PATTERN "*.in" EXCLUDE)
install(FILES "${PSTL_CONFIG_SITE_PATH}" install(FILES "${PSTL_CONFIG_SITE_PATH}"
DESTINATION include) DESTINATION include)