Skip to content

Commit 7663be1

Browse files
Remove debug messages
1 parent 22a7ebc commit 7663be1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tools/cmake/create_distro.cmake

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ function(mbed_create_distro NAME) # ARGN: modules...
4848

4949
list(GET REMAINING_MODULES 0 CURR_MODULE)
5050

51-
#message("Processing ${CURR_MODULE}")
52-
5351
copy_append_property(INTERFACE_COMPILE_DEFINITIONS ${CURR_MODULE} ${NAME})
5452
copy_append_property(INTERFACE_COMPILE_OPTIONS ${CURR_MODULE} ${NAME})
5553
copy_append_property(INTERFACE_INCLUDE_DIRECTORIES ${CURR_MODULE} ${NAME})
@@ -60,17 +58,14 @@ function(mbed_create_distro NAME) # ARGN: modules...
6058

6159
# find sub-modules of this module
6260
get_property(SUBMODULES TARGET ${CURR_MODULE} PROPERTY INTERFACE_LINK_LIBRARIES)
63-
#message("Deps of ${CURR_MODULE}: ${SUBMODULES}")
6461
foreach(SUBMODULE ${SUBMODULES})
6562
if(NOT "${SUBMODULE}" MATCHES "::@") # remove CMake internal CMAKE_DIRECTORY_ID_SEP markers
6663
if(NOT ${SUBMODULE} IN_LIST COMPLETED_MODULES)
6764
list(APPEND REMAINING_MODULES ${SUBMODULE})
6865
endif()
6966
endif()
7067
endforeach()
71-
72-
#message("REMAINING_MODULES: ${REMAINING_MODULES}")
73-
68+
7469
endwhile()
7570

7671
endfunction(mbed_create_distro)

0 commit comments

Comments
 (0)