cmake: set build dir for mconf-idf
Fixes an issue where if idf_build_process is called in a CMake subdirectory, menuconfig looks for the mconf-idf binary in the wrong place (in the subdirectory build dir instead of root binary dir).
This commit is contained in:
parent
c34d313a86
commit
8778c551eb
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ function(__kconfig_init)
|
|||
externalproject_add(mconf-idf
|
||||
SOURCE_DIR ${src_path}
|
||||
CONFIGURE_COMMAND ""
|
||||
BINARY_DIR "kconfig_bin"
|
||||
BINARY_DIR "${CMAKE_BINARY_DIR}/kconfig_bin"
|
||||
BUILD_COMMAND rm -f ${src_path}/zconf.lex.c ${src_path}/zconf.hash.c
|
||||
COMMAND make -f ${src_path}/Makefile mconf-idf
|
||||
BUILD_BYPRODUCTS ${MCONF}
|
||||
|
|
Loading…
Reference in a new issue