mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-01 14:24:35 +00:00
6 lines
202 B
CMake
6 lines
202 B
CMake
set(TARGET test-bench)
|
|
add_executable(${TARGET} test-bench.cpp)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
target_link_libraries(${TARGET} PRIVATE common)
|
|
#target_compile_features(${TARGET} PRIVATE cxx_std_11)
|