2023-06-13 21:04:40 +02:00
|
|
|
set(TARGET train-text-from-scratch)
|
|
|
|
|
add_executable(${TARGET} train-text-from-scratch.cpp)
|
2023-07-19 15:01:11 +08:00
|
|
|
install(TARGETS ${TARGET} RUNTIME)
|
2023-06-13 21:04:40 +02:00
|
|
|
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|