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

6 lines
221 B
CMake
Raw Normal View History

2023-03-25 20:26:40 +02:00
set(TARGET main)
add_executable(${TARGET} main.cpp)
2023-07-19 15:01:11 +08:00
install(TARGETS ${TARGET} RUNTIME)
2023-03-28 21:23:09 +03:00
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
2023-03-25 20:26:40 +02:00
target_compile_features(${TARGET} PRIVATE cxx_std_11)