We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb989f commit d5391dbCopy full SHA for d5391db
CMakeLists.txt
@@ -162,6 +162,16 @@ function(bundle_static_library name deps)
162
COMMENT "Bundling ${name}"
163
VERBATIM
164
)
165
+
166
+ 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
174
+ message(FATAL_ERROR "Don't know how to proceed with compiler ${CMAKE_C_COMPILER_ID}!")
175
else()
176
message(FATAL_ERROR "Unknown bundling for C compiler ${CMAKE_C_COMPILER_ID}!")
177
endif()
0 commit comments