We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b1efa commit 8ce3ff1Copy full SHA for 8ce3ff1
tools/mtmd/CMakeLists.txt
@@ -55,6 +55,8 @@ add_executable(llama-qwen2vl-cli deprecation-warning.cpp)
55
set(TARGET llama-mtmd-cli)
56
add_executable (${TARGET} mtmd-cli.cpp)
57
set_target_properties (${TARGET} PROPERTIES OUTPUT_NAME llama-mtmd-cli)
58
-install (TARGETS ${TARGET} RUNTIME)
+if(NOT CMAKE_SYSTEM_NAME STREQUAL "iOS")
59
+ install(TARGETS ${TARGET} RUNTIME)
60
+endif()
61
target_link_libraries (${TARGET} PRIVATE common mtmd Threads::Threads)
62
target_compile_features(${TARGET} PRIVATE cxx_std_17)
0 commit comments