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