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...
48
48
49
49
list (GET REMAINING_MODULES 0 CURR_MODULE )
50
50
51
- #message("Processing ${CURR_MODULE}")
52
-
53
51
copy_append_property (INTERFACE_COMPILE_DEFINITIONS ${CURR_MODULE} ${NAME} )
54
52
copy_append_property (INTERFACE_COMPILE_OPTIONS ${CURR_MODULE} ${NAME} )
55
53
copy_append_property (INTERFACE_INCLUDE_DIRECTORIES ${CURR_MODULE} ${NAME} )
@@ -60,17 +58,14 @@ function(mbed_create_distro NAME) # ARGN: modules...
60
58
61
59
# find sub-modules of this module
62
60
get_property (SUBMODULES TARGET ${CURR_MODULE} PROPERTY INTERFACE_LINK_LIBRARIES )
63
- #message("Deps of ${CURR_MODULE}: ${SUBMODULES}")
64
61
foreach (SUBMODULE ${SUBMODULES} )
65
62
if (NOT "${SUBMODULE} " MATCHES "::@" ) # remove CMake internal CMAKE_DIRECTORY_ID_SEP markers
66
63
if (NOT ${SUBMODULE} IN_LIST COMPLETED_MODULES )
67
64
list (APPEND REMAINING_MODULES ${SUBMODULE} )
68
65
endif ()
69
66
endif ()
70
67
endforeach ()
71
-
72
- #message("REMAINING_MODULES: ${REMAINING_MODULES}")
73
-
68
+
74
69
endwhile ()
75
70
76
71
endfunction (mbed_create_distro )
You can’t perform that action at this time.
0 commit comments