12 lines
320 B
CMake
12 lines
320 B
CMake
# Copyright (C) 2018-2022 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
file(GLOB local_modules "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
foreach(module_path IN LISTS local_modules)
|
|
if(NOT IS_DIRECTORY ${module_path}) # Skip files
|
|
continue()
|
|
endif()
|
|
add_subdirectory(${module_path})
|
|
endforeach()
|