Geant4 Cross Reference |
1 # - G4solidstate_channeling module build defin << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4phonon >> 4 # Package: Geant4.src.G4processes.G4phonon >> 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/10/2013 >> 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/management/include) >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include) >> 23 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/particles/bosons/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/particles/hadrons/barions/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/processes/biasing/management/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/processes/biasing/generic/include) >> 33 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/utils/include) >> 34 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 35 >> 36 # 3 # Define the Geant4 Module. 37 # Define the Geant4 Module. 4 geant4_add_module(G4solidstate_channeling << 38 # 5 PUBLIC_HEADERS << 39 include(Geant4MacroDefineModule) 6 G4ChannelingTrackData.hh << 40 GEANT4_DEFINE_MODULE(NAME G4phonon 7 G4ChannelingOptrMultiParticleChangeCrossSe << 41 HEADERS 8 G4ChannelingOptrChangeCrossSection.hh << 42 G4ChannelingTrackData.hh 9 G4ChannelingMaterialData.hh << 43 G4ChannelingOptrMultiParticleChangeCrossSection.hh 10 G4Channeling.hh << 44 G4ChannelingOptrChangeCrossSection.hh 11 G4ChannelingECHARM.hh << 45 G4ChannelingMaterialData.hh 12 SOURCES << 46 G4Channeling.hh 13 G4ChannelingTrackData.cc << 47 G4ChannelingECHARM.hh 14 G4ChannelingOptrMultiParticleChangeCrossSe << 48 SOURCES 15 G4ChannelingOptrChangeCrossSection.cc << 49 G4ChannelingTrackData.cc 16 G4ChannelingMaterialData.cc << 50 G4ChannelingOptrMultiParticleChangeCrossSection.cc 17 G4Channeling.cc << 51 G4ChannelingOptrChangeCrossSection.cc 18 G4ChannelingECHARM.cc) << 52 G4ChannelingMaterialData.cc >> 53 G4Channeling.cc >> 54 G4ChannelingECHARM.cc >> 55 GRANULAR_DEPENDENCIES >> 56 G4bosons >> 57 G4baryons >> 58 G4geometrymng >> 59 G4globman >> 60 G4materials >> 61 G4partman >> 62 G4emutils >> 63 G4procman >> 64 G4track >> 65 G4volumes >> 66 G4biasing_mgt >> 67 G4biasing_gen >> 68 GLOBAL_DEPENDENCIES >> 69 G4geometry >> 70 G4global >> 71 G4materials >> 72 G4particles >> 73 G4track >> 74 LINK_LIBRARIES >> 75 ) >> 76 >> 77 # List any source specific properties here 19 78 20 geant4_module_link_libraries(G4solidstate_chan << 21 PUBLIC << 22 G4biasing_mgt << 23 G4geometrymng << 24 G4globman << 25 G4materials << 26 G4procman << 27 G4track << 28 PRIVATE << 29 G4baryons << 30 G4biasing_gen << 31 G4emutils << 32 G4heprandom << 33 G4partman) <<