From bd2462ec0fc430f92c7e6c26fc3ac7e743275c10 Mon Sep 17 00:00:00 2001 From: Mengwei Liu Date: Tue, 31 Oct 2023 11:42:43 -0700 Subject: [PATCH] Fix CI job (#1115) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/1115 Fix an issue caused by #1036 Reviewed By: cccclai Differential Revision: D50842626 fbshipit-source-id: f7d9893193a1acb981a63149794e1fe3622b70a6 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35e8225d35..b8c2ca40ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -279,14 +279,14 @@ if(EXECUTORCH_BUILD_GFLAGS) endif() -# Install `executorch` library as well as `ExecuTorchConfig.cmake` +# Install `executorch` library as well as `executorch-config.cmake` # under ${CMAKE_INSTALL_PREFIX}/ install( TARGETS executorch DESTINATION lib INCLUDES DESTINATION ${_common_include_directories} ) -install(FILES build/ExecuTorchConfig.cmake DESTINATION lib/cmake/ExecuTorch) +install(FILES build/executorch-config.cmake DESTINATION lib/cmake/ExecuTorch) # # executor_runner: Host tool that demonstrates program execution.