Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,12 @@ install(
FILES_MATCHING
PATTERN "*.h"
)
install(
DIRECTORY runtime/executor/
DESTINATION include/executorch/runtime/executor
FILES_MATCHING
PATTERN "*.h"
)
install(
DIRECTORY runtime/kernel/
DESTINATION include/executorch/runtime/kernel
Expand Down Expand Up @@ -546,6 +552,12 @@ endif()

if(EXECUTORCH_BUILD_EXTENSION_MODULE)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/extension/module)
install(
DIRECTORY extension/module/
DESTINATION include/executorch/extension/module
FILES_MATCHING
PATTERN "*.h"
)
endif()

if(EXECUTORCH_BUILD_EXTENSION_LLM)
Expand Down
Loading