sysbuild: cmake: modules: kconfig: Fix changed CMake API
Fixes a bug which was caused by the CMake function API having
changed in commit 4e29a35b22
Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
parent
cf2ce9d322
commit
aed59d4431
1 changed files with 3 additions and 2 deletions
|
@ -107,8 +107,9 @@ if(EXISTS ${APP_DIR}/Kconfig.sysbuild)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Apply any EXTRA_CONF_FILE variables from snippets
|
# Apply any EXTRA_CONF_FILE variables from snippets
|
||||||
if(TARGET snippets_scope)
|
zephyr_scope_exists(scope_defined snippets)
|
||||||
get_property(snippets_EXTRA_CONF_FILE TARGET snippets_scope PROPERTY SB_EXTRA_CONF_FILE)
|
if(scope_defined)
|
||||||
|
zephyr_get_scoped(snippets_EXTRA_CONF_FILE snippets SB_EXTRA_CONF_FILE)
|
||||||
list(APPEND EXTRA_CONF_FILE ${snippets_EXTRA_CONF_FILE})
|
list(APPEND EXTRA_CONF_FILE ${snippets_EXTRA_CONF_FILE})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue