Felipe97/llama-cpp-compiled
01.2k
1# MIT license2# Copyright (C) 2024 Intel Corporation3# SPDX-License-Identifier: MIT4 5set(TARGET llama-ls-sycl-device)6add_executable(${TARGET} ls-sycl-device.cpp)7install(TARGETS ${TARGET} RUNTIME)8target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})9target_compile_features(${TARGET} PRIVATE cxx_std_17)10 