File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,13 @@ function(bundle_static_library name deps)
164164 )
165165
166166 elseif (CMAKE_C_COMPILER_ID MATCHES "^MSVC$" )
167+ message (STATUS "Dumping all cmake variables:" )
168+ get_cmake_property (_variableNames VARIABLES )
169+ list (SORT _variableNames)
170+ foreach (_variableName ${_variableNames} )
171+ message (STATUS "${_variableName} =${${_variableName} }" )
172+ endforeach ()
173+
167174 foreach (tgt IN LISTS deps)
168175 list (APPEND static_libs_full_names $<TARGET_FILE:${tgt} >)
169176 endforeach ()
@@ -175,6 +182,7 @@ function(bundle_static_library name deps)
175182 VERBATIM
176183 COMMAND_EXPAND_LISTS
177184 )
185+
178186 else ()
179187 message (FATAL_ERROR "Unknown bundling for C compiler ${CMAKE_C_COMPILER_ID} !" )
180188 endif ()
You can’t perform that action at this time.
0 commit comments