Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
+150 -125
View File
@@ -1,34 +1,37 @@
# This file defines the following macros for developers to use in ensuring
# that installed software is of the right version:
#
# MACRO_ENSURE_VERSION - test that a version number is greater than
# or equal to some minimum
# MACRO_ENSURE_VERSION - test that a version number is greater than
# or equal to some minimum
# MACRO_ENSURE_VERSION_RANGE - test that a version number is greater than
# or equal to some minimum and less than some
# maximum
# MACRO_ENSURE_VERSION2 - deprecated, do not use in new code
# or equal to some minimum and less than some
# maximum
# MACRO_ENSURE_VERSION2 - deprecated, do not use in new code
#
# MACRO_VERIFY_VERSION - test that a version number satisfies a given
# set of requirements, such as an exact match,
# greater than or equal to a minimum, less
# than or equal to some maximum, or between
# a minimum and maximum.
#
# MACRO_VERIFY_VERSION - test that a version number satisfies a given
# set of requirements, such as an exact match,
# greater than or equal to a minimum, less than
# or equal to some maximum, or between a minimum
# and maximum.
# MACRO_ENSURE_VERSION
# This macro compares version numbers of the form "a.b.c.d" or "a.b.c" or "a.b"
# This macro compares version numbers of the form "a.b.c.d" or "a.b.c"
# or "a.b"
#
# MACRO_ENSURE_VERSION( FOO_MIN_VERSION FOO_VERSION_FOUND FOO_VERSION_OK)
# will set FOO_VERSION_OK to true if FOO_VERSION_FOUND >= FOO_MIN_VERSION
# Leading and trailing text is ok, e.g.
# MACRO_ENSURE_VERSION( "2.5.31" "flex 2.5.4a" VERSION_OK)
# which means 2.5.31 is required and "flex 2.5.4a" is what was found on the system
# which means 2.5.31 is required and "flex 2.5.4a" is what was found on
# the system
# Copyright (c) 2006, David Faure, <faure@kde.org>
# Copyright (c) 2007, Will Stephenson <wstephenson@kde.org>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# Redistribution and use is allowed according to the terms of the
# BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
# MACRO_VERIFY_VERSION
# This macro compares version numbers of the form "a.b.c.d" or "a.b.c" or "a.b"
#
@@ -54,12 +57,10 @@
#
# Copyright (c) 2009, Ben Morgan, <Ben.Morgan@warwick.ac.uk>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# Redistribution and use is allowed according to the terms of the
# BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
# MACRO_ENSURE_VERSION_RANGE
# This macro ensures that a version number of the form
# "a.b.c.d" or "a.b.c" or "a.b" falls within a range defined by
@@ -74,7 +75,7 @@
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
# NORMALIZE_VERSION
# Helper macro to convert version numbers of the form "a.b.c.d"
# to an integer equal to 10^6 * a + 10^4 * b + 10^2 * c + d
@@ -88,7 +89,7 @@
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
# CHECK_RANGE_INCLUSIVE_LOWER
# Helper macro to check whether x <= y < z
#
@@ -96,123 +97,147 @@
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
# MACRO_
MACRO(NORMALIZE_VERSION _requested_version _normalized_version)
# Do we have a.b.c.d in _requested_version?
STRING(REGEX MATCH "[^0-9]*[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9].*" _fourPartMatch "${_requested_version}")
STRING(REGEX MATCH "[^0-9]*[0-9]+\\.[0-9]+\\.[0-9]+.*" _threePartMatch "${_requested_version}")
# - Include guard
if(__macroensureversion_isloaded)
return()
endif()
set(__macroensureversion_isloaded YES)
if (_fourPartMatch)
# We certainly have a.b.c.d so split out the components as needed
STRING(REGEX REPLACE "[^0-9]*([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" _major_vers "${_requested_version}")
STRING(REGEX REPLACE "[^0-9]*[0-9]+\\.([0-9]+)\\.[0-9]+.*" "\\1" _minor_vers "${_requested_version}")
STRING(REGEX REPLACE "[^0-9]*[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" _patch_vers "${_requested_version}")
STRING(REGEX REPLACE "[^0-9]*[0-9]+\\.[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" _tweak_vers "${_requested_version}")
#-----------------------------------------------------------------------
# macro normalize_version()
#
macro(normalize_version _requested_version _normalized_version)
# Do we have a.b.c.d in _requested_version?
string(REGEX MATCH "[^0-9]*[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9].*" _fourPartMatch "${_requested_version}")
string(REGEX MATCH "[^0-9]*[0-9]+\\.[0-9]+\\.[0-9]+.*" _threePartMatch "${_requested_version}")
elseif (_threePartMatch)
# parse the parts of the version string
STRING(REGEX REPLACE "[^0-9]*([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" _major_vers "${_requested_version}")
STRING(REGEX REPLACE "[^0-9]*[0-9]+\\.([0-9]+)\\.[0-9]+.*" "\\1" _minor_vers "${_requested_version}")
STRING(REGEX REPLACE "[^0-9]*[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" _patch_vers "${_requested_version}")
set(_tweak_vers "0")
else (_threePartMatch)
STRING(REGEX REPLACE "[^0-9]*([0-9]+)\\.[0-9]+" "\\1" _major_vers "${_requested_version}")
STRING(REGEX REPLACE "[^0-9]*[0-9]+\\.([0-9]+)" "\\1" _minor_vers "${_requested_version}")
set(_patch_vers "0")
set(_tweak_vers "0")
endif (_fourPartMatch)
if(_fourPartMatch)
# We certainly have a.b.c.d so split out the components as needed
string(REGEX REPLACE "[^0-9]*([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" _major_vers "${_requested_version}")
string(REGEX REPLACE "[^0-9]*[0-9]+\\.([0-9]+)\\.[0-9]+.*" "\\1" _minor_vers "${_requested_version}")
string(REGEX REPLACE "[^0-9]*[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" _patch_vers "${_requested_version}")
string(REGEX REPLACE "[^0-9]*[0-9]+\\.[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" _tweak_vers "${_requested_version}")
elseif(_threePartMatch)
# parse the parts of the version string
string(REGEX REPLACE "[^0-9]*([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" _major_vers "${_requested_version}")
string(REGEX REPLACE "[^0-9]*[0-9]+\\.([0-9]+)\\.[0-9]+.*" "\\1" _minor_vers "${_requested_version}")
string(REGEX REPLACE "[^0-9]*[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" _patch_vers "${_requested_version}")
set(_tweak_vers "0")
else(_threePartMatch)
string(REGEX REPLACE "[^0-9]*([0-9]+)\\.[0-9]+" "\\1" _major_vers "${_requested_version}")
string(REGEX REPLACE "[^0-9]*[0-9]+\\.([0-9]+)" "\\1" _minor_vers "${_requested_version}")
set(_patch_vers "0")
set(_tweak_vers "0")
endif()
# compute an overall version number which can be compared at once
MATH(EXPR ${_normalized_version} "${_major_vers}*1000000 + ${_minor_vers}*10000 + ${_patch_vers}*100 + ${_tweak_vers}")
ENDMACRO(NORMALIZE_VERSION)
# compute an overall version number which can be compared at once
math(EXPR ${_normalized_version} "${_major_vers}*1000000 + ${_minor_vers}*10000 + ${_patch_vers}*100 + ${_tweak_vers}")
endmacro()
MACRO(MACRO_CHECK_RANGE_INCLUSIVE_LOWER _lower_limit _value _upper_limit _ok)
if (${_value} LESS ${_lower_limit})
set( ${_ok} FALSE )
elseif (${_value} EQUAL ${_lower_limit})
set( ${_ok} TRUE )
elseif (${_value} EQUAL ${_upper_limit})
set( ${_ok} FALSE )
elseif (${_value} GREATER ${_upper_limit})
set( ${_ok} FALSE )
else (${_value} LESS ${_lower_limit})
set( ${_ok} TRUE )
endif (${_value} LESS ${_lower_limit})
ENDMACRO(MACRO_CHECK_RANGE_INCLUSIVE_LOWER)
#-----------------------------------------------------------------------
# macro macro_check_range_inclusive_lower()
#
macro(macro_check_range_inclusive_lower _lower_limit _value _upper_limit _ok)
if(${_value} LESS ${_lower_limit})
set(${_ok} FALSE)
elseif(${_value} EQUAL ${_lower_limit})
set(${_ok} TRUE)
elseif(${_value} EQUAL ${_upper_limit})
set(${_ok} FALSE)
elseif(${_value} GREATER ${_upper_limit})
set(${_ok} FALSE)
else()
set(${_ok} TRUE)
endif()
endmacro()
MACRO(MACRO_ENSURE_VERSION requested_version found_version var_too_old)
NORMALIZE_VERSION( ${requested_version} req_vers_num )
NORMALIZE_VERSION( ${found_version} found_vers_num )
#-----------------------------------------------------------------------
# macro macro_ensure_version()
#
macro(macro_ensure_version requested_version found_version var_too_old)
normalize_version(${requested_version} req_vers_num)
normalize_version(${found_version} found_vers_num)
if (found_vers_num LESS req_vers_num)
set( ${var_too_old} FALSE )
else (found_vers_num LESS req_vers_num)
set( ${var_too_old} TRUE )
endif (found_vers_num LESS req_vers_num)
if(found_vers_num LESS req_vers_num)
set(${var_too_old} FALSE)
else()
set(${var_too_old} TRUE)
endif()
endmacro()
ENDMACRO(MACRO_ENSURE_VERSION)
#-----------------------------------------------------------------------
# macro macro_ensure_version2()
#
macro(macro_ensure_version2 requested_version2 found_version2 var_too_old2)
macro_ensure_version(${requested_version2} ${found_version2} ${var_too_old2})
endmacro()
MACRO(MACRO_ENSURE_VERSION2 requested_version2 found_version2 var_too_old2)
MACRO_ENSURE_VERSION( ${requested_version2} ${found_version2} ${var_too_old2})
ENDMACRO(MACRO_ENSURE_VERSION2)
MACRO(MACRO_ENSURE_VERSION_RANGE min_version found_version max_version var_ok)
NORMALIZE_VERSION( ${min_version} req_vers_num )
NORMALIZE_VERSION( ${found_version} found_vers_num )
NORMALIZE_VERSION( ${max_version} max_vers_num )
MACRO_CHECK_RANGE_INCLUSIVE_LOWER( ${req_vers_num} ${found_vers_num} ${max_vers_num} ${var_ok})
ENDMACRO(MACRO_ENSURE_VERSION_RANGE)
#-----------------------------------------------------------------------
# macro macro_ensure_version_range()
#
macro(macro_ensure_version_range min_version found_version max_version var_ok)
normalize_version(${min_version} req_vers_num)
normalize_version(${found_version} found_vers_num)
normalize_version(${max_version} max_vers_num)
macro_check_range_inclusive_lower(${req_vers_num} ${found_vers_num} ${max_vers_num} ${var_ok})
endmacro()
#-----------------------------------------------------------------------
# For parsing...
include(CMakeMacroParseArguments)
MACRO(MACRO_VERIFY_VERSION)
CMAKE_PARSE_ARGUMENTS(MVV
""
"MIN_VERSION;MAX_VERSION;FOUND_VERSION;FIND_EXACT"
""
${ARGN})
set(MVV_VAR_OK ${ARGV0})
message("var to set: ${ARGV0}")
message("min_version = ${MVV_MIN_VERSION}")
message("max_version = ${MVV_MAX_VERSION}")
message("found_version = ${MVV_FOUND_VERSION}")
message("find_exact = ${MVV_FIND_EXACT}")
#-----------------------------------------------------------------------
# macro macro_verify_version()
#
macro(macro_verify_version)
cmake_parse_arguments(MVV
""
"MIN_VERSION;MAX_VERSION;FOUND_VERSION;FIND_EXACT"
""
${ARGN})
# If MIN_VERSION NOT supplied, must set it to absolute minimum
if (NOT DEFINED ${MVV_MIN_VERSION})
set(MVV_MIN_VERSION "0.0.0.0")
endif (NOT DEFINED ${MVV_MIN_VERSION})
set(MVV_VAR_OK ${ARGV0})
message("var to set: ${ARGV0}")
message("min_version = ${MVV_MIN_VERSION}")
message("max_version = ${MVV_MAX_VERSION}")
message("found_version = ${MVV_FOUND_VERSION}")
message("find_exact = ${MVV_FIND_EXACT}")
if (MVV_FOUND_VERSION AND MVV_FIND_EXACT)
if (${MVV_MIN_VERSION} MATCHES ${MVV_FOUND_VERSION})
set(${MVV_VAR_OK} TRUE)
else (${MVV_MIN_VERSION} MATCHES ${MVV_FOUND_VERSION})
set(${MVV_VAR_OK} FALSE)
endif (${MVV_MIN_VERSION} MATCHES ${MVV_FOUND_VERSION})
elseif (MVV_FOUND_VERSION AND NOT MVV_FIND_EXACT)
if (MVV_MAX_VERSION)
MACRO_ENSURE_VERSION_RANGE(${MVV_MIN_VERSION}
${MVV_FOUND_VERSION}
${MVV_MAX_VERSION}
${MVV_VAR_OK})
else (MVV_MAX_VERSION)
MACRO_ENSURE_VERSION(${MVV_MIN_VERSION}
${MVV_FOUND_VERSION}
${MVV_VAR_OK})
endif (MVV_MAX_VERSION)
else (MVV_FOUND_VERSION AND MVV_FIND_EXACT)
if (MVV_MAX_VERSION)
MACRO_ENSURE_VERSION_RANGE("0.0.0.0"
${MVV_FOUND_VERSION}
${MVV_MAX_VERSION}
${MVV_VAR_OK})
else (MVV_MAX_VERSION)
set(${MVV_VAR_OK} TRUE)
endif (MVV_MAX_VERSION)
endif (MVV_FOUND_VERSION AND MVV_FIND_EXACT)
ENDMACRO(MACRO_VERIFY_VERSION)
# If MIN_VERSION NOT supplied, must set it to absolute minimum
if(NOT DEFINED ${MVV_MIN_VERSION})
set(MVV_MIN_VERSION "0.0.0.0")
endif()
if(MVV_FOUND_VERSION AND MVV_FIND_EXACT)
if(${MVV_MIN_VERSION} MATCHES ${MVV_FOUND_VERSION})
set(${MVV_VAR_OK} TRUE)
else(${MVV_MIN_VERSION} MATCHES ${MVV_FOUND_VERSION})
set(${MVV_VAR_OK} FALSE)
endif()
elseif(MVV_FOUND_VERSION AND NOT MVV_FIND_EXACT)
if(MVV_MAX_VERSION)
macro_ensure_version_range(${MVV_MIN_VERSION}
${MVV_FOUND_VERSION}
${MVV_MAX_VERSION}
${MVV_VAR_OK})
else()
macro_ensure_version(${MVV_MIN_VERSION}
${MVV_FOUND_VERSION}
${MVV_VAR_OK})
endif()
else()
if(MVV_MAX_VERSION)
macro_ensure_version_range("0.0.0.0"
${MVV_FOUND_VERSION}
${MVV_MAX_VERSION}
${MVV_VAR_OK})
else()
set(${MVV_VAR_OK} TRUE)
endif()
endif()
endmacro(macro_verify_version)