mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00

Dates corrected in copyright headers to reflect original publication date (2018 for OpenCL, 2020 for Level Zero). Signed-off-by: lgotszal <lukasz.gotszald@intel.com>
31 lines
763 B
CMake
31 lines
763 B
CMake
#
|
|
# Copyright (C) 2020-2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
function(create_source_tree target directory)
|
|
if(WIN32)
|
|
get_filename_component(directory ${directory} ABSOLUTE)
|
|
get_target_property(source_list ${target} SOURCES)
|
|
source_group(TREE ${directory} FILES ${source_list})
|
|
endif()
|
|
endfunction()
|
|
|
|
macro(add_subdirectoriesL0 curdir dirmask)
|
|
file(GLOB children RELATIVE ${curdir} ${curdir}/${dirmask})
|
|
set(dirlist "")
|
|
|
|
foreach(child ${children})
|
|
if(IS_DIRECTORY ${curdir}/${child})
|
|
list(APPEND dirlist ${child})
|
|
endif()
|
|
endforeach()
|
|
|
|
foreach(subdir ${dirlist})
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${subdir}/CMakeLists.txt)
|
|
add_subdirectory(${subdir})
|
|
endif()
|
|
endforeach()
|
|
endmacro()
|