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

6 lines
235 B
CMake
Raw Normal View History

2023-09-28 20:40:11 +02:00
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)