mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-08-07 01:16:35 -04:00
Files
c5b8595e3f4f4ed319ef71c9c9d868d1b7a27626
6 lines
235 B
CMake
6 lines
235 B
CMake
set(TARGET export-lora)
|
|||
add_executable(${TARGET} export-lora.cpp)
|
|||
install(TARGETS ${TARGET} RUNTIME)
|
|||
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
|||
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|