# Copyright (C) 2024-2026 Intel Corporation # SPDX-License-Identifier: MIT set(logging_files logging.h logging.cpp ze_to_string.h zes_to_string.h zet_to_string.h zer_to_string.h) add_library(level_zero_utils STATIC ${logging_files}) if(SYSTEM_SPDLOG) target_link_libraries(level_zero_utils PUBLIC spdlog::spdlog) else() target_include_directories(level_zero_utils PUBLIC $) endif() target_include_directories(level_zero_utils PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) set_property(TARGET level_zero_utils PROPERTY POSITION_INDEPENDENT_CODE ON)