Skip to content
Snippets Groups Projects
Commit d2beddfc authored by Steffen Müthing's avatar Steffen Müthing
Browse files

[CMake] Export project revision as ProjectVersionRevision

CMake exports the major and minor components of the module version, but
not the revision. This patch fixes that omission.
parent 552fc174
No related branches found
No related tags found
No related merge requests found
......@@ -552,6 +552,7 @@ macro(dune_project)
set(ProjectVersionString "${DUNE_VERSION_MAJOR}.${DUNE_VERSION_MINOR}.${DUNE_VERSION_REVISION}")
set(ProjectVersionMajor "${DUNE_VERSION_MAJOR}")
set(ProjectVersionMinor "${DUNE_VERSION_MINOR}")
set(ProjectVersionRevision "${DUNE_VERSION_REVISION}")
set(ProjectMaintainerEmail "${DUNE_MAINTAINER}")
define_property(GLOBAL PROPERTY DUNE_MODULE_LIBRARIES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment