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