cmake/Tests/RunCMake/project/PrintVersions.cmake

7 lines
231 B
CMake
Raw Normal View History

2020-02-01 23:06:01 +01:00
macro(print_versions name)
foreach(v "" _MAJOR _MINOR _PATCH _TWEAK)
message(STATUS "PROJECT_VERSION${v}='${PROJECT_VERSION${v}}'")
message(STATUS "${name}_VERSION${v}='${${name}_VERSION${v}}'")
endforeach()
endmacro()