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 # $Id: sources.cmake 75725 2013-11-05 16:52:30Z mkelsey $ >> 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/volumes/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/particles/bosons/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/particles/hadrons/barions/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/processes/biasing/management/include) >> 33 include_directories(${CMAKE_SOURCE_DIR}/source/processes/biasing/generic/include) >> 34 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/utils/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(G4solidstate_channeling << 39 # 5 PUBLIC_HEADERS << 40 include(Geant4MacroDefineModule) 6 G4ChannelingTrackData.hh << 41 GEANT4_DEFINE_MODULE(NAME G4phonon 7 G4ChannelingOptrMultiParticleChangeCrossSe << 42 HEADERS 8 G4ChannelingOptrChangeCrossSection.hh << 43 G4ChannelingTrackData.hh 9 G4ChannelingMaterialData.hh << 44 G4ChannelingOptrMultiParticleChangeCrossSection.hh 10 G4Channeling.hh << 45 G4ChannelingOptrChangeCrossSection.hh 11 G4ChannelingECHARM.hh << 46 G4ChannelingMaterialData.hh 12 SOURCES << 47 G4Channeling.hh 13 G4ChannelingTrackData.cc << 48 G4ChannelingECHARM.hh 14 G4ChannelingOptrMultiParticleChangeCrossSe << 49 SOURCES 15 G4ChannelingOptrChangeCrossSection.cc << 50 G4ChannelingTrackData.cc 16 G4ChannelingMaterialData.cc << 51 G4ChannelingOptrMultiParticleChangeCrossSection.cc 17 G4Channeling.cc << 52 G4ChannelingOptrChangeCrossSection.cc 18 G4ChannelingECHARM.cc) << 53 G4ChannelingMaterialData.cc >> 54 G4Channeling.cc >> 55 G4ChannelingECHARM.cc >> 56 GRANULAR_DEPENDENCIES >> 57 G4bosons >> 58 G4baryons >> 59 G4geometrymng >> 60 G4globman >> 61 G4materials >> 62 G4partman >> 63 G4emutils >> 64 G4procman >> 65 G4track >> 66 G4volumes >> 67 G4biasing_mgt >> 68 G4biasing_gen >> 69 GLOBAL_DEPENDENCIES >> 70 G4geometry >> 71 G4global >> 72 G4materials >> 73 G4particles >> 74 G4track >> 75 LINK_LIBRARIES >> 76 ) >> 77 >> 78 # List any source specific properties here 19 79 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) <<