mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 12:33:12 +08:00
append sources in current directory Related-To: NEO-7507 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
572 B
CMake
20 lines
572 B
CMake
#
|
|
# Copyright (C) 2020-2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(UNIX)
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/fs_access.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_sysman_imp.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_sysman_imp.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_sysman_driver_imp.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_sysman_driver_imp.cpp
|
|
)
|
|
|
|
add_subdirectories()
|
|
endif()
|