1
0

CMakeLists.txt 335 B

123456789
  1. # MIT license
  2. # Copyright (C) 2024 Intel Corporation
  3. # SPDX-License-Identifier: MIT
  4. set(TARGET llama-ls-sycl-device)
  5. add_executable(${TARGET} ls-sycl-device.cpp)
  6. install(TARGETS ${TARGET} RUNTIME)
  7. target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
  8. target_compile_features(${TARGET} PRIVATE cxx_std_17)