mirror of
https://gitlab.com/niansa/llama_any_server.git
synced 2025-03-06 20:53:35 +01:00
15 lines
354 B
CMake
15 lines
354 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(llama_any_server LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
add_subdirectory(libjustlm)
|
|
|
|
add_executable(llama_any_server main.cpp)
|
|
|
|
target_link_libraries(llama_any_server PUBLIC libjustlm)
|
|
|
|
install(TARGETS llama_any_server
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|