[Openmp-commits] [PATCH] D133420: [OpenMP] Install ompt-multiplex.h alongside omp.h

serge via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Sep 7 05:53:13 PDT 2022


serge-sans-paille created this revision.
serge-sans-paille added reviewers: protze.joachim, jdoerfert.
Herald added subscribers: guansong, yaxunl, mgorny.
Herald added a project: All.
serge-sans-paille requested review of this revision.
Herald added subscribers: openmp-commits, sstefan1.
Herald added a project: OpenMP.

The default install direction may not be in the compiler search path.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D133420

Files:
  openmp/tools/multiplex/CMakeLists.txt


Index: openmp/tools/multiplex/CMakeLists.txt
===================================================================
--- openmp/tools/multiplex/CMakeLists.txt
+++ openmp/tools/multiplex/CMakeLists.txt
@@ -4,7 +4,7 @@
   add_library(ompt-multiplex INTERFACE)
   target_include_directories(ompt-multiplex INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
 
-  install(FILES ompt-multiplex.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}")
+  install(FILES ompt-multiplex.h DESTINATION "${LIBOMP_HEADERS_INSTALL_PATH}")
 
   add_subdirectory(tests)
 endif()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D133420.458434.patch
Type: text/x-patch
Size: 535 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20220907/6c160369/attachment.bin>


More information about the Openmp-commits mailing list