mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-10 05:49:51 +08:00
Move shared specific targets to neo shared folder Move opencl specific targets to opencl runtime folder Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
17 lines
550 B
CMake
17 lines
550 B
CMake
#
|
|
# Copyright (C) 2017-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
add_library(${BUILTINS_VME_LIB_NAME} OBJECT EXCLUDE_FROM_ALL
|
|
CMakeLists.txt
|
|
register_ext_vme_source.cpp
|
|
)
|
|
set_target_properties(${BUILTINS_VME_LIB_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
set_target_properties(${BUILTINS_VME_LIB_NAME} PROPERTIES FOLDER "${OPENCL_RUNTIME_PROJECTS_FOLDER}/${OPENCL_BUIILINS_PROJECTS_FOLDER}")
|
|
|
|
target_include_directories(${BUILTINS_VME_LIB_NAME} PRIVATE
|
|
${KHRONOS_HEADERS_DIR}
|
|
)
|