Files
llvm/orc-rt/lib/executor/CMakeLists.txt
Lang Hames 822446d74a [orc-rt] Remove (effectively) unused header orc-rt-c/orc-rt.h. NFCI.
This header was a placeholder in the initial project check-in, but is not used.
Time to remove it.
2025-10-09 14:32:31 +11:00

18 lines
401 B
CMake

set(files
AllocAction.cpp
ResourceManager.cpp
RTTI.cpp
Session.cpp
SimpleNativeMemoryMap.cpp
)
add_library(orc-rt-executor STATIC ${files})
target_link_libraries(orc-rt-executor
PUBLIC orc-rt-headers
)
install(TARGETS orc-rt-executor
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
COMPONENT OrcRT_Development
PUBLIC_HEADER DESTINATION include COMPONENT OrcRT_Development
)