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

@@ -10,6 +10,8 @@ if (LLAMA_CURL)
set(LLAMA_RUN_EXTRA_LIBS ${LLAMA_RUN_EXTRA_LIBS} ${CURL_LIBRARIES})
endif ()
install(TARGETS ${TARGET} RUNTIME)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT} ${LLAMA_RUN_EXTRA_LIBS})
target_compile_features(${TARGET} PRIVATE cxx_std_17)