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

6 lines
225 B
CMake
Raw Normal View History

2023-06-16 20:58:09 +02:00
set(TARGET simple)
add_executable(${TARGET} simple.cpp)
2023-07-19 15:01:11 +08:00
install(TARGETS ${TARGET} RUNTIME)
2023-06-16 20:58:09 +02:00
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)