mirror of
https://github.com/JesseTG/melonds-ds.git
synced 2024-11-27 08:41:08 +00:00
5b81a0e1d9
- It was never implemented or used
14 lines
455 B
CMake
14 lines
455 B
CMake
function(dump_cmake_variables)
|
|
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(DEBUG "${_variableName}=${${_variableName}}")
|
|
endforeach ()
|
|
endfunction() |