Skip to content

Commit

Permalink
fix(build_system): Allow dots in the name of an app binary
Browse files Browse the repository at this point in the history
  • Loading branch information
radimkarnis committed Aug 8, 2023
1 parent 31d87a0 commit 2b8bbe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cmake/build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,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})
Expand Down

0 comments on commit 2b8bbe0

Please sign in to comment.