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
|
|
|
|
clip.cpp
|
|
|
|
clip.h
|
|
|
|
clip-impl.h
|
2025-05-28 22:35:22 +02:00
|
|
|
mtmd-helper.cpp
|
|
|
|
mtmd-helper.h
|
|
|
|
)
|
|
|
|
|
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-10-12 18:23:18 +03: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-10-12 18:23:18 +03:00
|
|
|
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)
|
|
|
|
install (TARGETS ${TARGET} RUNTIME)
|
|
|
|
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)
|