fix(build_system): Allow dots in the name of an app binary

This commit is contained in:
radim.karnis
2023-08-08 15:13:25 +02:00
parent e5199390a3
commit e72cf8c908

View File

@@ -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})