From 0d56dbf192d14eeaf47cfc982ed68fc2bc438aba Mon Sep 17 00:00:00 2001 From: Myriad-Dreamin <35292584+Myriad-Dreamin@users.noreply.github.com> Date: Sat, 6 Sep 2025 16:22:10 +0800 Subject: [PATCH] Install clice executable in CMakeLists.txt (#229) --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92e85c1d..16551a10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,6 +154,8 @@ add_executable(clice "${CMAKE_SOURCE_DIR}/src/Driver/clice.cc") target_link_libraries(clice PRIVATE clice-core) target_compile_options(clice PUBLIC ${CLICE_CXX_FLAGS}) target_link_options(clice PUBLIC ${CLICE_LINKER_FLAGS}) +# install clice executable +install(TARGETS clice RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) # copy resource dir message(STATUS "Copying resource directory")