-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCMakeLists.txt
55 lines (46 loc) · 1.14 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
include_directories(.)
set(CRKSPH_inst
computeCRKSPHSumMassDensity
computeSolidCRKSPHSumMassDensity
CRKSPHHydroBase
detectSurface
SolidCRKSPHHydroBase
editMultimaterialSurfaceTopology
zerothOrderSurfaceCorrections
)
set(CRKSPH_sources
centerOfMass.cc
)
if(ENABLE_2D)
list(APPEND CRKSPH_sources
CRKSPHHydroBaseRZ.cc
SolidCRKSPHHydroBaseRZ.cc
)
endif()
if(ENABLE_3D)
list(APPEND CRKSPH_sources
)
endif()
instantiate(CRKSPH_inst CRKSPH_sources)
set(CRKSPH_headers
CRKSPHHydroBase.hh
CRKSPHHydroBaseInline.hh
CRKSPHHydroBaseRZ.hh
CRKSPHVariant.hh
SolidCRKSPHHydroBase.hh
SolidCRKSPHHydroBaseInline.hh
SolidCRKSPHHydroBaseRZ.hh
centerOfMass.hh
computeCRKSPHEvaluation.hh
computeCRKSPHIntegral.hh
computeCRKSPHSumMassDensity.hh
computeHullSumMassDensity.hh
computeSolidCRKSPHSumMassDensity.hh
computeVoronoiCentroids.hh
detectSurface.hh
editMultimaterialSurfaceTopology.hh
volumeSpacing.hh
zerothOrderSurfaceCorrections.hh
)
spheral_add_obj_library(CRKSPH SPHERAL_OBJ_LIBS)
spheral_install_python_files(CRKSPHHydros.py)