Files
8ced9f7e3225adb8501e9821ed1bbd92e3a5c7ae
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)
|