diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-07-23 23:01:47 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-07-23 23:01:47 -0400 |
commit | f22407223f21b4a16a16b8254961e45eb177dbdb (patch) | |
tree | 82d8bc503932e898d40452d8e735851476f023d5 /app | |
parent | b1bc5b4c82a7c1d1208d72112d55134a9ff33199 (diff) |
Log more info on ZMK config dir usage.
Diffstat (limited to 'app')
-rw-r--r-- | app/cmake/zmk_config.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/cmake/zmk_config.cmake b/app/cmake/zmk_config.cmake index 2ae0a72..8ecf710 100644 --- a/app/cmake/zmk_config.cmake +++ b/app/cmake/zmk_config.cmake @@ -45,9 +45,11 @@ set(CACHED_ZMK_CONFIG ${ZMK_CONFIG} CACHE STRING "Selected user ZMK config") if (ZMK_CONFIG) if(EXISTS "${ZMK_CONFIG}/boards") + message(STATUS "Adding ZMK config directory as board root: ${ZMK_CONFIG}") list(APPEND BOARD_ROOT "${ZMK_CONFIG}") endif() if(EXISTS "${ZMK_CONFIG}/dts") + message(STATUS "Adding ZMK config directory as DTS root: ${ZMK_CONFIG}") list(APPEND DTS_ROOT "${ZMK_CONFIG}") endif() endif() |