mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
14 lines
490 B
CMake
14 lines
490 B
CMake
function(jkqtplotter_dumpallvariables)
|
|
get_cmake_property(_variableNames VARIABLES)
|
|
list (SORT _variableNames)
|
|
foreach (_variableName ${_variableNames})
|
|
if (ARGV0)
|
|
unset(MATCHED)
|
|
string(REGEX MATCH ${ARGV0} MATCHED ${_variableName})
|
|
if (NOT MATCHED)
|
|
continue()
|
|
endif()
|
|
endif()
|
|
message(STATUS "${_variableName}=${${_variableName}}")
|
|
endforeach()
|
|
endfunction(jkqtplotter_dumpallvariables) |