Skip to content

Instantly share code, notes, and snippets.

@mistificator
Created March 15, 2025 19:45
Show Gist options
  • Save mistificator/24a0ffe407bf5e0b089b937627299e0a to your computer and use it in GitHub Desktop.
Save mistificator/24a0ffe407bf5e0b089b937627299e0a to your computer and use it in GitHub Desktop.
Print everything defined in CMake project
get_cmake_property(_variableNames VARIABLES)
list (SORT _variableNames)
foreach (_variableName ${_variableNames})
message(STATUS "${_variableName}=${${_variableName}}")
endforeach()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment