mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 07:08:04 +08:00
Related-To: NEO-1157 Change-Id: Ie1b907e838cfb9ad0d75cc8971d415f7c77103c9 Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
26 lines
815 B
CMake
26 lines
815 B
CMake
#
|
|
# Copyright (C) 2017-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
add_library(${BUILTINS_SOURCES_LIB_NAME} OBJECT EXCLUDE_FROM_ALL
|
|
CMakeLists.txt
|
|
built_ins_registry.h
|
|
register_copy_kernels_source.cpp
|
|
)
|
|
|
|
set_target_properties(${BUILTINS_SOURCES_LIB_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
|
|
set_target_properties(${BUILTINS_SOURCES_LIB_NAME} PROPERTIES FOLDER "built_ins")
|
|
|
|
target_include_directories(${BUILTINS_SOURCES_LIB_NAME} PRIVATE
|
|
${ENGINE_NODE_DIR}
|
|
${KHRONOS_HEADERS_DIR}
|
|
${KHRONOS_GL_HEADERS_DIR}
|
|
${NEO__GMM_INCLUDE_DIR}
|
|
${NEO__IGC_INCLUDE_DIR}
|
|
${THIRD_PARTY_DIR}
|
|
)
|
|
|
|
add_subdirectories()
|