Files

6 lines
271 B
CMake
Raw Permalink Normal View History

set(TARGET llama-convert-llama2c-to-ggml)
2023-08-11 19:17:25 -04:00
add_executable(${TARGET} convert-llama2c-to-ggml.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)