~ajdobbs/maus/event-viewer

« back to all changes in this revision

Viewing changes to third_party/install/lib64/Geant4-9.6.2/Geant4ConfigVersion.cmake

  • Committer: Ao Liu
  • Date: 2015-09-01 03:14:59 UTC
  • mfrom: (910.1.8 trunk)
  • mto: (910.1.11 trunk)
  • mto: This revision was merged to the branch mainline in revision 921.
  • Revision ID: aoliu@fnal.gov-20150901031459-i0stzz3bzo7b06zh
CkovMCDigitizer with the MAUS::Data and better handling of the hits

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# - Geant4 CMake Versioning File for External Projects
2
 
# This file is configured by Geant4 for use with CMake's find_package in
3
 
# Config mode.
4
 
# It enables external projects to determine the version of Geant4 found.
5
 
# More importantly, it allows that command to automatically determine whether 
6
 
# the found install is compatible with any VERSION that was supplied with
7
 
# find_package.
8
 
#
9
 
# As this file is configured by Geant4's CMake system it SHOULD NOT BE EDITED
10
 
#
11
 
#----------------------------------------------------------------------------
12
 
 
13
 
#----------------------------------------------------------------------------
14
 
# Installed Version as set from CMake
15
 
#
16
 
set(PACKAGE_VERSION "9.6.2")
17
 
 
18
 
#----------------------------------------------------------------------------
19
 
# Check whether the requested PACKAGE_FIND_VERSION is compatible with this
20
 
# installed version.
21
 
if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}")
22
 
  set(PACKAGE_VERSION_COMPATIBLE FALSE)
23
 
else()
24
 
  set(PACKAGE_VERSION_COMPATIBLE TRUE)
25
 
  if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}")
26
 
    set(PACKAGE_VERSION_EXACT TRUE)
27
 
  endif()
28
 
endif()
29
 
 
30
 
 
31
 
 
32