Files
llama.cpp/examples/benchmark/CMakeLists.txt
T

7 lines
302 B
CMake
Raw Normal View History

2023-04-30 12:32:37 +00:00
set(TARGET benchmark)
add_executable(${TARGET} benchmark-matmult.cpp)
2023-07-19 15:01:11 +08:00
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama build_info ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(${TARGET} PRIVATE ../../common)
2023-04-30 12:32:37 +00:00
target_compile_features(${TARGET} PRIVATE cxx_std_11)