Skip to content

Instantly share code, notes, and snippets.

@lchagnoleau
Created April 7, 2023 06:12
Show Gist options
  • Save lchagnoleau/3097b57120c7deb1ac4ffea61cdb2e58 to your computer and use it in GitHub Desktop.
Save lchagnoleau/3097b57120c7deb1ac4ffea61cdb2e58 to your computer and use it in GitHub Desktop.
Print all cmake variables
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