mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Change-Id: I1f572d9e036d4d5b5c6999518d40c9c4ba094649 Signed-off-by: davidoli <david.olien@intel.com>
22 lines
450 B
CMake
22 lines
450 B
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(L0_SRCS_TOOLS_PIN
|
|
${CMAKE_CURRENT_SOURCE_DIR}/pin.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/pin.h
|
|
)
|
|
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${L0_SRCS_TOOLS_PIN}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
)
|
|
|
|
add_subdirectories()
|
|
|
|
# Make our source files visible to parent
|
|
set_property(GLOBAL PROPERTY L0_SRCS_TOOLS_PIN ${L0_SRCS_TOOLS_PIN})
|