mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-4480 Change-Id: I16da4434ec24753eabdb1bce9e38ed2e1e83ed6c Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
27 lines
638 B
CMake
27 lines
638 B
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
add_subdirectory(tracing)
|
|
add_subdirectory(metrics)
|
|
add_subdirectory(sysman)
|
|
add_subdirectory(pin)
|
|
|
|
set(L0_TOOLS_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools_init.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools_init.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools_init_imp.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tools_init_imp.h
|
|
)
|
|
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${L0_TOOLS_SOURCES}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
)
|
|
|
|
# Make our source files visible to parent
|
|
set_property(GLOBAL PROPERTY L0_TOOLS_SOURCES ${L0_TOOLS_SOURCES})
|