File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff 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
7671endfunction (mbed_create_distro)
You can’t perform that action at this time.
0 commit comments