58 lines
2.1 KiB
CMake
58 lines
2.1 KiB
CMake
#-----------------------------------------------------------------------
|
|
# - Top Level CMakeLists.txt for Geant4 Build
|
|
#
|
|
# 21st September 2010 Ben Morgan
|
|
#
|
|
# $Id: CMakeLists.txt 110849 2018-06-20 06:36:08Z gcosmo $
|
|
#
|
|
|
|
#-----------------------------------------------------------------------
|
|
# - Enforce an out-of-source builds before anything else
|
|
#
|
|
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
|
|
message(STATUS "Geant4 requires an out-of-source build.")
|
|
message(STATUS "Please remove these files from ${CMAKE_BINARY_DIR} first:")
|
|
message(STATUS "CMakeCache.txt")
|
|
message(STATUS "CMakeFiles")
|
|
message(STATUS "Once these files are removed, create a separate directory")
|
|
message(STATUS "and run CMake from there")
|
|
message(FATAL_ERROR "in-source build detected")
|
|
endif()
|
|
|
|
#-----------------------------------------------------------------------
|
|
# - Define CMake requirements and override make rules as needed
|
|
#
|
|
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
|
|
|
|
# - Any policy requirements should go here
|
|
|
|
# - Make overrides for default flags, so they appear in interfaces
|
|
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
|
|
${CMAKE_SOURCE_DIR}/cmake/Modules/Geant4MakeRules_cxx.cmake)
|
|
|
|
#-----------------------------------------------------------------------
|
|
# - Project definition and basic configuration
|
|
# Version handled manually as project(... VERSION ...) is not used
|
|
# in tests/examples which are subprojects. All calls must use
|
|
# the same form.
|
|
project(Geant4)
|
|
set(${PROJECT_NAME}_VERSION_MAJOR 10)
|
|
set(${PROJECT_NAME}_VERSION_MINOR 5)
|
|
set(${PROJECT_NAME}_VERSION_PATCH 0)
|
|
set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}")
|
|
|
|
# - Prepend our own CMake Modules to the search path
|
|
# NB: if our custom modules include others that we don't supply, those in
|
|
# the base path will be used, so watch for incompatibilities!!
|
|
#
|
|
set(CMAKE_MODULE_PATH
|
|
${PROJECT_SOURCE_DIR}/cmake/Modules
|
|
${CMAKE_MODULE_PATH})
|
|
|
|
#-----------------------------------------------------------------------
|
|
# - Include CMake category main module
|
|
# Factored into category for convenience in tagging
|
|
#
|
|
include(G4CMakeMain)
|
|
|