Files
llama.cpp/tools/export-lora/CMakeLists.txt
T

9 lines
278 B
CMake
Raw Normal View History

set(TARGET llama-export-lora)
2023-09-28 20:40:11 +02:00
add_executable(${TARGET} export-lora.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()