cmake : Do not install tools on iOS targets (#15903)

This commit is contained in:
Yuri Khrustalev
2025-09-15 22:54:44 -04:00
committed by GitHub
parent 6d758839ff
commit 07808ebb07
14 changed files with 54 additions and 13 deletions

View File

@@ -1,5 +1,8 @@
set(TARGET llama-cli)
add_executable(${TARGET} main.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()