source: trunk/source/particles/adjoint/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: 1.9 KB
Line 
1#------------------------------------------------------------------------------
2# sources.cmake
3# Module : G4partadj
4# Package: Geant4.src.G4particles.G4partadj
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:47:24 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/global/HEPGeometry/include)
23include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include)
24include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include)
25include_directories(${CMAKE_SOURCE_DIR}/source/materials/include)
26include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include)
27
28#
29# Define the Geant4 Module.
30#
31include(Geant4MacroDefineModule)
32GEANT4_DEFINE_MODULE(NAME G4partadj
33    HEADERS
34        G4AdjointAlpha.hh
35        G4AdjointDeuteron.hh
36        G4AdjointElectron.hh
37        G4AdjointGamma.hh
38        G4AdjointGenericIon.hh
39        G4AdjointHe3.hh
40        G4AdjointIons.hh
41        G4AdjointPositron.hh
42        G4AdjointProton.hh
43        G4AdjointTriton.hh
44    SOURCES
45        G4AdjointAlpha.cc
46        G4AdjointDeuteron.cc
47        G4AdjointElectron.cc
48        G4AdjointGamma.cc
49        G4AdjointGenericIon.cc
50        G4AdjointHe3.cc
51        G4AdjointIons.cc
52        G4AdjointPositron.cc
53        G4AdjointProton.cc
54        G4AdjointTriton.cc
55    GRANULAR_DEPENDENCIES
56        G4globman
57        G4materials
58        G4partman
59    GLOBAL_DEPENDENCIES
60        G4global
61        G4materials
62    LINK_LIBRARIES
63)
64
65# List any source specific properties here
66
Note: See TracBrowser for help on using the repository browser.