[libcxx-commits] [pstl] r368203 - [pstl] Make sure we install all of PSTL's include/ directory
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Aug 7 13:29:05 PDT 2019
Author: ldionne
Date: Wed Aug 7 13:29:04 2019
New Revision: 368203
URL: http://llvm.org/viewvc/llvm-project?rev=368203&view=rev
Log:
[pstl] Make sure we install all of PSTL's include/ directory
We want to install files directly in include/, not only in include/pstl.
Modified:
pstl/trunk/CMakeLists.txt
Modified: pstl/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/pstl/trunk/CMakeLists.txt?rev=368203&r1=368202&r2=368203&view=diff
==============================================================================
--- pstl/trunk/CMakeLists.txt (original)
+++ pstl/trunk/CMakeLists.txt Wed Aug 7 13:29:04 2019
@@ -76,7 +76,7 @@ install(EXPORT ParallelSTLTargets
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfigVersion.cmake"
DESTINATION lib/cmake/ParallelSTL)
-install(DIRECTORY include/pstl
+install(DIRECTORY include/
DESTINATION include)
add_custom_target(install-pstl
More information about the libcxx-commits
mailing list