fix: Only search for board one not found yet.

This commit is contained in:
Peter Johanson 2021-10-18 14:44:13 +00:00 committed by Pete Johanson
parent 742f4c2826
commit 0dc7d46eb1

View file

@ -61,14 +61,16 @@ foreach(root ${BOARD_ROOT})
if (EXISTS "${root}/boards/${BOARD}.overlay") if (EXISTS "${root}/boards/${BOARD}.overlay")
list(APPEND ZMK_DTC_FILES "${root}/boards/${BOARD}.overlay") list(APPEND ZMK_DTC_FILES "${root}/boards/${BOARD}.overlay")
endif() endif()
find_path(BOARD_DIR if (NOT DEFINED BOARD_DIR)
NAMES ${BOARD}_defconfig find_path(BOARD_DIR
PATHS ${root}/boards/*/* NAMES ${BOARD}_defconfig
NO_DEFAULT_PATH PATHS ${root}/boards/*/*
) NO_DEFAULT_PATH
if(BOARD_DIR) )
get_filename_component(BOARD_DIR_NAME ${BOARD_DIR} NAME) if(BOARD_DIR)
list(APPEND KEYMAP_DIRS ${BOARD_DIR}) get_filename_component(BOARD_DIR_NAME ${BOARD_DIR} NAME)
list(APPEND KEYMAP_DIRS ${BOARD_DIR})
endif()
endif() endif()
if(DEFINED SHIELD) if(DEFINED SHIELD)