mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
b12fa0d1c1
* cmake : fix build when .git does not exist * cmake : simplify BUILD_INFO target * cmake : add missing dependencies on BUILD_INFO * build : link against build info instead of compiling against it * zig : make build info a .cpp source instead of a header Co-authored-by: Matheus C. França <matheus-catarino@hotmail.com> * cmake : revert change to CMP0115 --------- Co-authored-by: Matheus C. França <matheus-catarino@hotmail.com>
15 lines
550 B
CMake
15 lines
550 B
CMake
set(TARGET clip)
|
|
add_library(${TARGET} clip.cpp clip.h)
|
|
install(TARGETS ${TARGET} LIBRARY)
|
|
target_link_libraries(${TARGET} PRIVATE common ggml ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|
|
if (NOT MSVC)
|
|
target_compile_options(${TARGET} PRIVATE -Wno-cast-qual) # stb_image.h
|
|
endif()
|
|
|
|
set(TARGET llava)
|
|
add_executable(${TARGET} llava.cpp)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
target_link_libraries(${TARGET} PRIVATE common llama clip ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|