2025-04-10 22:57:16 +02:00
|
|
|
# mtmd
|
|
|
|
|
|
2025-05-31 10:14:29 +02:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
|
|
|
|
add_library(mtmd
|
2025-04-10 22:57:16 +02:00
|
|
|
mtmd.cpp
|
2025-05-28 22:35:22 +02:00
|
|
|
mtmd-audio.cpp
|
2025-04-10 22:57:16 +02:00
|
|
|
mtmd.h
|
2025-12-12 21:14:48 +01:00
|
|
|
mtmd-helper.cpp
|
|
|
|
|
mtmd-helper.h
|
2025-04-10 22:57:16 +02:00
|
|
|
clip.cpp
|
|
|
|
|
clip.h
|
|
|
|
|
clip-impl.h
|
2025-12-12 21:14:48 +01:00
|
|
|
clip-model.h
|
|
|
|
|
clip-graph.h
|
|
|
|
|
models/models.h
|
|
|
|
|
models/cogvlm.cpp
|
2025-12-19 00:18:01 +01:00
|
|
|
models/conformer.cpp
|
2025-12-16 11:25:26 +01:00
|
|
|
models/glm4v.cpp
|
2025-12-12 21:14:48 +01:00
|
|
|
models/internvl.cpp
|
|
|
|
|
models/kimivl.cpp
|
|
|
|
|
models/llama4.cpp
|
|
|
|
|
models/llava.cpp
|
|
|
|
|
models/minicpmv.cpp
|
|
|
|
|
models/pixtral.cpp
|
|
|
|
|
models/qwen2vl.cpp
|
|
|
|
|
models/qwen3vl.cpp
|
|
|
|
|
models/siglip.cpp
|
|
|
|
|
models/whisper-enc.cpp
|
2025-05-28 22:35:22 +02:00
|
|
|
)
|
|
|
|
|
|
2025-11-11 04:19:50 -07:00
|
|
|
set_target_properties(mtmd PROPERTIES
|
|
|
|
|
VERSION ${LLAMA_INSTALL_VERSION}
|
|
|
|
|
SOVERSION 0
|
2025-12-09 06:17:41 -05:00
|
|
|
MACHO_CURRENT_VERSION 0 # keep macOS linker from seeing oversized version number
|
2025-11-11 04:19:50 -07:00
|
|
|
)
|
|
|
|
|
|
2025-05-31 10:14:29 +02:00
|
|
|
target_link_libraries (mtmd PUBLIC ggml llama)
|
|
|
|
|
target_link_libraries (mtmd PRIVATE Threads::Threads)
|
|
|
|
|
target_include_directories(mtmd PUBLIC .)
|
|
|
|
|
target_include_directories(mtmd PRIVATE ../..)
|
|
|
|
|
target_include_directories(mtmd PRIVATE ../../vendor)
|
|
|
|
|
target_compile_features (mtmd PRIVATE cxx_std_17)
|
2025-05-28 22:35:22 +02:00
|
|
|
|
2025-04-10 22:57:16 +02:00
|
|
|
if (BUILD_SHARED_LIBS)
|
2025-05-31 10:14:29 +02:00
|
|
|
set_target_properties (mtmd PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
target_compile_definitions(mtmd PRIVATE LLAMA_BUILD)
|
|
|
|
|
target_compile_definitions(mtmd PUBLIC LLAMA_SHARED)
|
2025-04-10 22:57:16 +02:00
|
|
|
endif()
|
|
|
|
|
|
2025-05-31 10:14:29 +02:00
|
|
|
set(MTMD_PUBLIC_HEADERS
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mtmd.h
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mtmd-helper.h
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
set_target_properties(mtmd
|
|
|
|
|
PROPERTIES
|
|
|
|
|
PUBLIC_HEADER "${MTMD_PUBLIC_HEADERS}")
|
|
|
|
|
|
|
|
|
|
install(TARGETS mtmd LIBRARY PUBLIC_HEADER)
|
|
|
|
|
|
2023-11-06 22:36:23 +01:00
|
|
|
if (NOT MSVC)
|
2025-05-28 22:35:22 +02:00
|
|
|
# for stb_image.h and miniaudio.h
|
2025-05-31 10:14:29 +02:00
|
|
|
target_compile_options(mtmd PRIVATE -Wno-cast-qual)
|
2023-12-29 11:52:15 -05:00
|
|
|
endif()
|
|
|
|
|
|
2025-05-31 10:14:29 +02:00
|
|
|
if (TARGET BUILD_INFO)
|
|
|
|
|
add_dependencies(mtmd BUILD_INFO)
|
|
|
|
|
add_dependencies(mtmd-helper BUILD_INFO)
|
2023-11-06 22:36:23 +01:00
|
|
|
endif()
|
|
|
|
|
|
2025-12-12 15:16:06 +01:00
|
|
|
# if mtmd is linked against common, we throw an error
|
|
|
|
|
if (TARGET mtmd)
|
|
|
|
|
get_target_property(libs mtmd LINK_LIBRARIES)
|
|
|
|
|
if (libs AND "common" IN_LIST libs)
|
|
|
|
|
message(FATAL_ERROR "mtmd is designed to be a public library.\n"
|
|
|
|
|
"It must not link against common")
|
|
|
|
|
endif()
|
|
|
|
|
endif()
|
|
|
|
|
|
2025-04-21 15:32:58 +02:00
|
|
|
add_executable(llama-llava-cli deprecation-warning.cpp)
|
|
|
|
|
add_executable(llama-gemma3-cli deprecation-warning.cpp)
|
|
|
|
|
add_executable(llama-minicpmv-cli deprecation-warning.cpp)
|
2025-04-29 11:47:04 +02:00
|
|
|
add_executable(llama-qwen2vl-cli deprecation-warning.cpp)
|
2025-02-05 14:45:40 +07:00
|
|
|
|
2025-04-21 15:32:58 +02:00
|
|
|
set(TARGET llama-mtmd-cli)
|
2025-05-31 10:14:29 +02:00
|
|
|
add_executable (${TARGET} mtmd-cli.cpp)
|
|
|
|
|
set_target_properties (${TARGET} PROPERTIES OUTPUT_NAME llama-mtmd-cli)
|
2025-09-15 22:54:44 -04:00
|
|
|
if(LLAMA_TOOLS_INSTALL)
|
2025-08-26 20:05:50 +02:00
|
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
|
|
|
endif()
|
2025-05-31 10:14:29 +02:00
|
|
|
target_link_libraries (${TARGET} PRIVATE common mtmd Threads::Threads)
|
2025-03-12 09:30:24 +01:00
|
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|