mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Remove need for zetInit call for tracing Change-Id: Icbb75d8f52e2f9107e5308fd0c99415ea1e227f6 Signed-off-by: davidoli <david.olien@intel.com>
25 lines
542 B
CMake
25 lines
542 B
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
add_subdirectory(tracing)
|
|
|
|
set(L0_EXPERIMENTAL_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/experimental.cpp
|
|
)
|
|
|
|
target_include_directories(${L0_STATIC_LIB_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/
|
|
)
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${L0_EXPERIMENTAL_SOURCES}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
)
|
|
|
|
# Make our source files visible to parent
|
|
set_property(GLOBAL PROPERTY L0_EXPERIMENTAL_SOURCES ${L0_EXPERIMENTAL_SOURCES})
|