source: trunk/source/processes/biasing/sources.cmake @ 1350

Last change on this file since 1350 was 1350, checked in by garnier, 13 years ago

update to last version 4.9.4

File size: 3.5 KB
Line 
1#------------------------------------------------------------------------------
2# sources.cmake
3# Module : G4biasing
4# Package: Geant4.src.G4processes.G4biasing
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,v 1.1 2010/09/29 18:51:43 bmorgan Exp $
15#
16#------------------------------------------------------------------------------
17
18# List external includes needed.
19include_directories(${CLHEP_INCLUDE_DIRS})
20
21# List internal includes needed.
22include_directories(${CMAKE_SOURCE_DIR}/source/digits_hits/detector/include)
23include_directories(${CMAKE_SOURCE_DIR}/source/digits_hits/hits/include)
24include_directories(${CMAKE_SOURCE_DIR}/source/geometry/biasing/include)
25include_directories(${CMAKE_SOURCE_DIR}/source/geometry/magneticfield/include)
26include_directories(${CMAKE_SOURCE_DIR}/source/geometry/management/include)
27include_directories(${CMAKE_SOURCE_DIR}/source/geometry/navigation/include)
28include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include)
29include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include)
30include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include)
31include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include)
32include_directories(${CMAKE_SOURCE_DIR}/source/intercoms/include)
33include_directories(${CMAKE_SOURCE_DIR}/source/materials/include)
34include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include)
35include_directories(${CMAKE_SOURCE_DIR}/source/processes/cuts/include)
36include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/utils/include)
37include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include)
38include_directories(${CMAKE_SOURCE_DIR}/source/processes/transportation/include)
39include_directories(${CMAKE_SOURCE_DIR}/source/track/include)
40
41#
42# Define the Geant4 Module.
43#
44include(Geant4MacroDefineModule)
45GEANT4_DEFINE_MODULE(NAME G4biasing
46    HEADERS
47        G4GeometrySampler.hh
48        G4ImportanceConfigurator.hh
49        G4ImportanceProcess.hh
50        G4PlaceOfAction.hh
51        G4ProcessPlacer.hh
52        G4SamplingPostStepAction.hh
53        G4TrackTerminator.hh
54        G4VProcessPlacer.hh
55        G4VSampler.hh
56        G4VSamplerConfigurator.hh
57        G4WeightCutOffConfigurator.hh
58        G4WeightCutOffProcess.hh
59        G4WeightWindowConfigurator.hh
60        G4WeightWindowProcess.hh
61    SOURCES
62        G4GeometrySampler.cc
63        G4ImportanceConfigurator.cc
64        G4ImportanceProcess.cc
65        G4ProcessPlacer.cc
66        G4SamplingPostStepAction.cc
67        G4VProcessPlacer.cc
68        G4VSampler.cc
69        G4VSamplerConfigurator.cc
70        G4WeightCutOffConfigurator.cc
71        G4WeightCutOffProcess.cc
72        G4WeightWindowConfigurator.cc
73        G4WeightWindowProcess.cc
74    GRANULAR_DEPENDENCIES
75        G4cuts
76        G4detector
77        G4emutils
78        G4geombias
79        G4geometrymng
80        G4globman
81        G4hits
82        G4intercoms
83        G4magneticfield
84        G4materials
85        G4navigation
86        G4partman
87        G4procman
88        G4track
89        G4transportation
90        G4volumes
91    GLOBAL_DEPENDENCIES
92        G4digits_hits
93        G4geometry
94        G4global
95        G4intercoms
96        G4materials
97        G4particles
98        G4track
99    LINK_LIBRARIES
100)
101
102# List any source specific properties here
103
Note: See TracBrowser for help on using the repository browser.