20 lines
727 B
CMake
20 lines
727 B
CMake
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
file(GLOB cmake_modules "${CMAKE_CURRENT_LIST_DIR}/*/CMakeLists.txt")
|
||
|
|
||
|
foreach(module ${cmake_modules})
|
||
|
get_filename_component(module_dir ${module} DIRECTORY)
|
||
|
get_filename_component(module_name ${module_dir} NAME)
|
||
|
string(TOUPPER ${module_name} MODULE_NAME_UPPER)
|
||
|
set(ZEPHYR_${MODULE_NAME_UPPER}_CMAKE_DIR ${module_dir})
|
||
|
endforeach()
|
||
|
|
||
|
file(GLOB kconfig_modules "${CMAKE_CURRENT_LIST_DIR}/*/Kconfig")
|
||
|
|
||
|
foreach(module ${kconfig_modules})
|
||
|
get_filename_component(module_dir ${module} DIRECTORY)
|
||
|
get_filename_component(module_name ${module_dir} NAME)
|
||
|
string(TOUPPER ${module_name} MODULE_NAME_UPPER)
|
||
|
set(ZEPHYR_${MODULE_NAME_UPPER}_KCONFIG ${module_dir}/Kconfig)
|
||
|
endforeach()
|