BootstrapInfo holds information needed to bootstrap the ExecutionSession in the controller. Future patches will update ControllerAccess to send the bootstrap information at controller-connection time. BootstrapInfo includes information about the executor process (via Session::processInfo), an initial set of symbols (replacing Session::controllerInterface()), and a simple key/value store.
66 lines
1.8 KiB
CMake
66 lines
1.8 KiB
CMake
set(ORC_RT_HEADERS
|
|
orc-rt-c/CoreTyspe.h
|
|
orc-rt-c/Error.h
|
|
orc-rt-c/ExternC.h
|
|
orc-rt-c/WrapperFunction.h
|
|
orc-rt-c/orc-rt.h
|
|
orc-rt/AllocAction.h
|
|
orc-rt/BitmaskEnum.h
|
|
orc-rt/BootstrapInfo.h
|
|
orc-rt/Compiler.h
|
|
orc-rt/SimpleSymbolTable.h
|
|
orc-rt/Error.h
|
|
orc-rt/ExecutorAddress.h
|
|
orc-rt/IntervalMap.h
|
|
orc-rt/IntervalSet.h
|
|
orc-rt/LockedAccess.h
|
|
orc-rt/Math.h
|
|
orc-rt/MemoryFlags.h
|
|
orc-rt/QueueingTaskDispatcher.h
|
|
orc-rt/RTTI.h
|
|
orc-rt/ScopeExit.h
|
|
orc-rt/Service.h
|
|
orc-rt/Session.h
|
|
orc-rt/SimpleNativeMemoryMap.h
|
|
orc-rt/SimplePackedSerialization.h
|
|
orc-rt/SPSAllocAction.h
|
|
orc-rt/sps-ci/AllSPSCI.h
|
|
orc-rt/sps-ci/SimpleNativeMemoryMapSPSCI.h
|
|
orc-rt/SPSMemoryFlags.h
|
|
orc-rt/SPSWrapperFunction.h
|
|
orc-rt/SPSWrapperFunctionBuffer.h
|
|
orc-rt/TaskDispatcher.h
|
|
orc-rt/ThreadPoolTaskDispatcher.h
|
|
orc-rt/WrapperFunction.h
|
|
orc-rt/bind.h
|
|
orc-rt/bit.h
|
|
orc-rt/move_only_function.h
|
|
orc-rt/span.h
|
|
)
|
|
|
|
# Add generated config header
|
|
set(ORC_RT_GENERATED_HEADERS
|
|
${CMAKE_CURRENT_BINARY_DIR}/orc-rt-c/config.h
|
|
)
|
|
|
|
# TODO: Switch to filesets when we move to cmake-3.23.
|
|
add_library(orc-rt-headers INTERFACE)
|
|
target_include_directories(orc-rt-headers INTERFACE
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
|
|
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
)
|
|
set_property(TARGET orc-rt-headers
|
|
PROPERTY PUBLIC_HEADER ${ORC_RT_HEADERS} ${ORC_RT_GENERATED_HEADERS}
|
|
)
|
|
install(TARGETS orc-rt-headers
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/
|
|
COMPONENT OrcRT_Development
|
|
)
|
|
|
|
# Install generated config header
|
|
install(FILES ${ORC_RT_GENERATED_HEADERS}
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/orc-rt-c/
|
|
COMPONENT OrcRT_Development
|
|
)
|