Skip to content

Commit 6abc7cc

Browse files
committed
Do not count number of library source folders
It's rather uninteresting noise.
1 parent 741d448 commit 6abc7cc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

toolchain/arduino-cli-toolchain.cmake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,8 +711,7 @@ function(__arduino_add_import_library NAME SOURCE_DIR) # [SOURCE_DIR...]
711711
__arduino_collect_source_files(_library_sources ${_library_directories}) # <----- collect the library's source files
712712

713713
list(LENGTH _library_sources _source_file_count)
714-
list(LENGTH _library_directories _source_dir_count)
715-
message(STATUS " ${_source_file_count} source files found for ${_target} in ${_source_dir_count} directories")
714+
message(STATUS " ${_source_file_count} source files found for ${_target}")
716715

717716
list(JOIN _library_sources "\"\n \"" _quoted_library_sources) # <--------- prepare CMake to build out of tree
718717
list(JOIN _library_directories "\"\n \"" _quoted_library_directories)

0 commit comments

Comments
 (0)