Skip to content

Commit

Permalink
DDSegmentation: change version variables to standard cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
andresailer committed May 7, 2017
1 parent bf926b8 commit 12c9317
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions DDSegmentation/CMakeLists.txt
@@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
project(DDSegmentation)
#fg: version number must be the same as DD4hep !!
set(DDSegmentation_MAJOR_VERSION 0)
set(DDSegmentation_MINOR_VERSION 19)
set(DDSegmentation_PATCH_VERSION 0)
set(DDSegmentation_VERSION "${DDSegmentation_MAJOR_VERSION}.${DDSegmentation_MINOR_VERSION}" )
set(DDSegmentation_SOVERSION "${DDSegmentation_MAJOR_VERSION}.${DDSegmentation_MINOR_VERSION}")
set(DDSegmentation_VERSION_MAJOR 0)
set(DDSegmentation_VERSION_MINOR 19)
set(DDSegmentation_VERSION_PATCH 0)
set(DDSegmentation_VERSION "${DDSegmentation_VERSION_MAJOR}.${DDSegmentation_VERSION_MINOR}" )
set(DDSegmentation_SOVERSION "${DDSegmentation_VERSION_MAJOR}.${DDSegmentation_VERSION_MINOR}")

#------------- set the default installation directory to be the source directory

Expand Down

0 comments on commit 12c9317

Please sign in to comment.