mirror of
https://github.com/abetlen/llama-cpp-python.git
synced 2023-09-07 17:34:22 +03:00
13 lines
226 B
CMake
13 lines
226 B
CMake
cmake_minimum_required(VERSION 3.4...3.22)
|
|
|
|
project(llama_cpp)
|
|
|
|
set(BUILD_SHARED_LIBS "On")
|
|
|
|
add_subdirectory(vendor/llama.cpp)
|
|
|
|
install(
|
|
TARGETS llama
|
|
LIBRARY DESTINATION llama_cpp
|
|
RUNTIME DESTINATION llama_cpp
|
|
) |