Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .ci/scripts/unittest-macos-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ ${CONDA_RUN} pytest -n auto --cov=./ --cov-report=xml
# Run gtest
LLVM_PROFDATA="xcrun llvm-profdata" LLVM_COV="xcrun llvm-cov" \
${CONDA_RUN} test/run_oss_cpp_tests.sh
${CONDA_RUN} test/check_for_installed_private_headers_in_cmake_out.sh
9 changes: 0 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -485,29 +485,24 @@ install(
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/executorch/runtime/core
FILES_MATCHING
PATTERN "*.h"
PATTERN "testing_util" EXCLUDE
)
install(
DIRECTORY runtime/executor/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/executorch/runtime/executor
FILES_MATCHING
PATTERN "*.h"
PATTERN "test" EXCLUDE
PATTERN "platform_memory_allocator.h" EXCLUDE
)
install(
DIRECTORY runtime/kernel/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/executorch/runtime/kernel
FILES_MATCHING
PATTERN "*.h"
PATTERN "test" EXCLUDE
)
install(
DIRECTORY runtime/platform/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/executorch/runtime/platform
FILES_MATCHING
PATTERN "*.h"
PATTERN "test" EXCLUDE
)
install(
DIRECTORY extension/kernel_util/
Expand Down Expand Up @@ -592,15 +587,11 @@ endif()

if(EXECUTORCH_BUILD_EXTENSION_DATA_LOADER)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/extension/data_loader)
if(NOT WIN32)
set(data_loader_exclude_pattern "*mman_windows.h")
endif()
install(
DIRECTORY extension/data_loader/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/executorch/extension/data_loader
FILES_MATCHING
PATTERN "*.h"
PATTERN ${data_loader_exclude_pattern} EXCLUDE
)
list(APPEND _executorch_extensions extension_data_loader)
endif()
Expand Down
44 changes: 0 additions & 44 deletions test/check_for_installed_private_headers_in_cmake_out.sh

This file was deleted.

Loading