From e72cf8c9086cdf620b8200545c96441fd58250fb Mon Sep 17 00:00:00 2001 From: "radim.karnis" Date: Tue, 8 Aug 2023 15:13:25 +0200 Subject: [PATCH] fix(build_system): Allow dots in the name of an app binary --- tools/cmake/build.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cmake/build.cmake b/tools/cmake/build.cmake index 70bb2d636c..2719e19e2b 100644 --- a/tools/cmake/build.cmake +++ b/tools/cmake/build.cmake @@ -641,7 +641,7 @@ function(idf_build_executable elf) # Set the EXECUTABLE_NAME and EXECUTABLE properties since there are generator expression # from components that depend on it - get_filename_component(elf_name ${elf} NAME_WE) + get_filename_component(elf_name ${elf} NAME_WLE) get_target_property(elf_dir ${elf} BINARY_DIR) idf_build_set_property(EXECUTABLE_NAME ${elf_name})