Skip to content

Commit ac55609

Browse files
committed
debugging
1 parent 50e6d43 commit ac55609

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)