CMakeLists.txt 186 B

1234
  1. set(TARGET main)
  2. add_executable(${TARGET} main.cpp)
  3. target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
  4. target_compile_features(${TARGET} PRIVATE cxx_std_11)