mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
10 lines
313 B
CMake
10 lines
313 B
CMake
function(dump_cmake_variables)
|
|
get_cmake_property(_variableNames VARIABLES)
|
|
list(SORT _variableNames)
|
|
foreach(_variableName ${_variableNames})
|
|
if((NOT DEFINED ARGV0) OR _variableName MATCHES ${ARGV0})
|
|
message(STATUS "${_variableName}=${${_variableName}}")
|
|
endif()
|
|
endforeach()
|
|
endfunction()
|