Files
89febfed9322c8849520dc63c93ee4f5fd72556e
6 lines
229 B
CMake
6 lines
229 B
CMake
set(TARGET finetune)
|
|||
add_executable(${TARGET} finetune.cpp)
|
|||
install(TARGETS ${TARGET} RUNTIME)
|
|||
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
|||
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|