Files
f4d7e5497485ce6ce0e322533930b7da4657dd2d
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)
|