mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-12 17:33:00 +08:00
Remove need for zetInit call for tracing Change-Id: Icbb75d8f52e2f9107e5308fd0c99415ea1e227f6 Signed-off-by: davidoli <david.olien@intel.com>
26 lines
612 B
CMake
26 lines
612 B
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
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})
|