mirror of
https://github.com/intel/llvm.git
synced 2026-01-21 04:14:03 +08:00
This header was a placeholder in the initial project check-in, but is not used. Time to remove it.
18 lines
401 B
CMake
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
|
|
)
|