[llvm] [ORC-RT] Initial check-in for a new, top-level ORC runtime project. (PR #113499)

Ben Boeckel via llvm-commits llvm-commits at lists.llvm.org
Thu May 15 00:15:12 PDT 2025


================
@@ -11,7 +11,7 @@ target_include_directories(orc-rt-headers INTERFACE
 set_property(TARGET orc-rt-headers
     PROPERTY PUBLIC_HEADER ${ORC_RT_HEADERS}
 )
-install(DIRECTORY ./
+install(TARGETS orc-rt-headers
     DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/
-    FILES_MATCHING PATTERN "*.h"
+    COMPONENT OrcRT_Development
----------------
mathstuf wrote:

D'oh! Yes, `PUBLIC_HEADER` should work; I had forgotten about this mechanism. I believe it flattens the hierarchy, but maybe that's not the case.

https://github.com/llvm/llvm-project/pull/113499


More information about the llvm-commits mailing list