Geant4 Cross Reference |
1 # - G4global category build(s) << 1 #----------------------------------------------------------------------- >> 2 # CMakeLists.txt >> 3 # Module : G4global >> 4 # Package: Geant4.src.G4global >> 5 # >> 6 # Top level CMakeLists.txt for a Geant4 Global Library >> 7 # or collection of sublibraries >> 8 # >> 9 # Generated on : 24/9/2010 >> 10 # >> 11 # $Id: CMakeLists.txt 69106 2013-04-18 13:05:15Z gcosmo $ >> 12 # >> 13 #----------------------------------------------------------------------- >> 14 >> 15 # Add allocation export symbol for the global category 2 add_definitions(-DG4GLOB_ALLOC_EXPORT) 16 add_definitions(-DG4GLOB_ALLOC_EXPORT) 3 17 4 include(HEPGeometry/sources.cmake) << 18 add_subdirectory(HEPGeometry) 5 include(HEPNumerics/sources.cmake) << 19 add_subdirectory(HEPNumerics) 6 include(HEPRandom/sources.cmake) << 20 add_subdirectory(HEPRandom) 7 include(management/sources.cmake) << 21 add_subdirectory(management) >> 22 >> 23 # Geant4 global library >> 24 if(NOT GEANT4_BUILD_GRANULAR_LIBS) >> 25 include(Geant4MacroLibraryTargets) >> 26 GEANT4_GLOBAL_LIBRARY_TARGET(NAME G4global >> 27 COMPONENTS >> 28 HEPGeometry/sources.cmake >> 29 HEPNumerics/sources.cmake >> 30 HEPRandom/sources.cmake >> 31 management/sources.cmake >> 32 ) >> 33 endif() 8 34 9 geant4_add_category(G4global MODULES << 10 G4hepgeometry << 11 G4hepnumerics << 12 G4heprandom << 13 G4globman ) <<