Geant4 Cross Reference |
1 # - G4muons module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4muons >> 4 # Package: Geant4.src.G4processes.G4electromagnetic.G4muons >> 5 # >> 6 # Sources description for a library. >> 7 # Lists the sources and headers of the code explicitely. >> 8 # Lists include paths needed. >> 9 # Lists the internal granular and global dependencies of the library. >> 10 # Source specific properties should be added at the end. >> 11 # >> 12 # Generated on : 24/9/2010 >> 13 # >> 14 # $Id: sources.cmake 96156 2016-03-21 08:10:21Z gcosmo $ >> 15 # >> 16 #------------------------------------------------------------------------------ 2 17 >> 18 # List external includes needed. >> 19 include_directories(${CLHEP_INCLUDE_DIRS}) >> 20 >> 21 # List internal includes needed. >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/management/include) >> 23 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/navigation/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/particles/bosons/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/particles/hadrons/barions/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/particles/hadrons/mesons/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/particles/leptons/include) >> 33 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 34 include_directories(${CMAKE_SOURCE_DIR}/source/processes/cuts/include) >> 35 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/standard/include) >> 36 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/utils/include) >> 37 include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include) >> 38 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 39 >> 40 # 3 # Define the Geant4 Module. 41 # Define the Geant4 Module. 4 geant4_add_module(G4muons << 42 # 5 PUBLIC_HEADERS << 43 include(Geant4MacroDefineModule) 6 G4EnergyLossForExtrapolator.hh << 44 GEANT4_DEFINE_MODULE(NAME G4muons 7 G4ErrorEnergyLoss.hh << 45 HEADERS 8 G4ModifiedMephi.hh << 46 G4EnergyLossForExtrapolator.hh 9 G4MuBetheBlochModel.hh << 47 G4ErrorEnergyLoss.hh 10 G4MuBremsstrahlung.hh << 48 G4MuBetheBlochModel.hh 11 G4MuBremsstrahlungModel.hh << 49 G4MuBremsstrahlung.hh 12 G4MuIonisation.hh << 50 G4MuBremsstrahlungModel.hh 13 G4MuMultipleScattering.hh << 51 G4MuIonisation.hh 14 G4MuPairProduction.hh << 52 G4MuMultipleScattering.hh 15 G4MuPairProductionModel.hh << 53 G4MuPairProduction.hh 16 G4MuonToMuonPairProduction.hh << 54 G4MuPairProductionModel.hh 17 G4MuonToMuonPairProductionModel.hh << 55 G4TablesForExtrapolator.hh 18 G4RiGeAngularGenerator.hh << 56 G4ePairProduction.hh 19 G4RiGeMuPairProductionModel.hh << 57 SOURCES 20 G4TablesForExtrapolator.hh << 58 G4EnergyLossForExtrapolator.cc 21 G4ePairProduction.hh << 59 G4ErrorEnergyLoss.cc 22 SOURCES << 60 G4MuBetheBlochModel.cc 23 G4EnergyLossForExtrapolator.cc << 61 G4MuBremsstrahlung.cc 24 G4ErrorEnergyLoss.cc << 62 G4MuBremsstrahlungModel.cc 25 G4ModifiedMephi.cc << 63 G4MuIonisation.cc 26 G4MuBetheBlochModel.cc << 64 G4MuMultipleScattering.cc 27 G4MuBremsstrahlung.cc << 65 G4MuPairProduction.cc 28 G4MuBremsstrahlungModel.cc << 66 G4MuPairProductionModel.cc 29 G4MuIonisation.cc << 67 G4TablesForExtrapolator.cc 30 G4MuMultipleScattering.cc << 68 G4ePairProduction.cc 31 G4MuPairProduction.cc << 69 GRANULAR_DEPENDENCIES 32 G4MuPairProductionModel.cc << 70 G4baryons 33 G4MuonToMuonPairProduction.cc << 71 G4bosons 34 G4MuonToMuonPairProductionModel.cc << 72 G4cuts 35 G4RiGeAngularGenerator.cc << 73 G4emstandard 36 G4RiGeMuPairProductionModel.cc << 74 G4emutils 37 G4TablesForExtrapolator.cc << 75 G4geometrymng 38 G4ePairProduction.cc) << 76 G4globman >> 77 G4leptons >> 78 G4materials >> 79 G4mesons >> 80 G4navigation >> 81 G4partman >> 82 G4procman >> 83 G4track >> 84 G4volumes >> 85 GLOBAL_DEPENDENCIES >> 86 G4geometry >> 87 G4global >> 88 G4materials >> 89 G4particles >> 90 G4track >> 91 LINK_LIBRARIES >> 92 ) >> 93 >> 94 # List any source specific properties here 39 95 40 geant4_module_link_libraries(G4muons << 41 PUBLIC << 42 G4emutils << 43 G4globman << 44 G4hepgeometry << 45 G4materials << 46 G4procman << 47 PRIVATE << 48 G4baryons << 49 G4bosons << 50 G4cuts << 51 G4emstandard << 52 G4heprandom << 53 G4leptons << 54 G4partman << 55 G4track) <<