Geant4 Cross Reference |
1 # - G4transportation module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4transportation >> 4 # Package: Geant4.src.G4processes.G4transportation >> 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 # >> 15 #------------------------------------------------------------------------------ 2 16 >> 17 # List external includes needed. >> 18 include_directories(${CLHEP_INCLUDE_DIRS}) >> 19 >> 20 # List internal includes needed. >> 21 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/biasing/include) >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/magneticfield/include) >> 23 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/management/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/navigation/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/intercoms/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/processes/cuts/include) >> 33 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/utils/include) >> 34 include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include) >> 35 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 36 >> 37 # 3 # Define the Geant4 Module. 38 # Define the Geant4 Module. 4 geant4_add_module(G4transportation << 39 # 5 PUBLIC_HEADERS << 40 include(Geant4MacroDefineModule) 6 G4CoupledTransportation.hh << 41 GEANT4_DEFINE_MODULE(NAME G4transportation 7 G4NeutronKiller.hh << 42 HEADERS 8 G4NeutronKillerMessenger.hh << 43 G4CoupledTransportation.hh 9 G4StepLimiter.hh << 44 G4CoupledTransportation.icc 10 G4TrackTerminator.hh << 45 G4NeutronKiller.hh 11 G4Transportation.hh << 46 G4NeutronKillerMessenger.hh 12 G4Transportation.icc << 47 G4StepLimiter.hh 13 G4VTrackTerminator.hh << 48 G4TrackTerminator.hh 14 G4TransportationLogger.hh << 49 G4Transportation.hh 15 G4TransportationParameters.hh << 50 G4Transportation.icc 16 G4TransportationProcessType.hh << 51 G4UserSpecialCuts.hh 17 SOURCES << 52 G4VTrackTerminator.hh 18 G4CoupledTransportation.cc << 53 G4TransportationLogger.hh 19 G4NeutronKiller.cc << 54 G4TransportationProcessType.hh 20 G4NeutronKillerMessenger.cc << 55 SOURCES 21 G4StepLimiter.cc << 56 G4CoupledTransportation.cc 22 G4Transportation.cc << 57 G4NeutronKiller.cc 23 G4TransportationParameters.cc << 58 G4NeutronKillerMessenger.cc 24 G4TransportationLogger.cc << 59 G4StepLimiter.cc 25 G4VTrackTerminator.cc) << 60 G4Transportation.cc >> 61 G4TransportationLogger.cc >> 62 G4UserSpecialCuts.cc >> 63 G4VTrackTerminator.cc >> 64 GRANULAR_DEPENDENCIES >> 65 G4cuts >> 66 G4emutils >> 67 G4geombias >> 68 G4geometrymng >> 69 G4globman >> 70 G4intercoms >> 71 G4magneticfield >> 72 G4materials >> 73 G4navigation >> 74 G4partman >> 75 G4procman >> 76 G4track >> 77 G4volumes >> 78 GLOBAL_DEPENDENCIES >> 79 G4geometry >> 80 G4global >> 81 G4intercoms >> 82 G4materials >> 83 G4particles >> 84 G4track >> 85 LINK_LIBRARIES >> 86 ) >> 87 >> 88 # List any source specific properties here 26 89 27 geant4_module_link_libraries(G4transportation << 28 PUBLIC << 29 G4globman << 30 G4intercoms << 31 G4partman << 32 G4procman << 33 G4track << 34 PRIVATE << 35 G4cuts << 36 G4magneticfield << 37 G4navigation) <<