-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
94 lines (94 loc) · 2.36 KB
/
dub.json
File metadata and controls
94 lines (94 loc) · 2.36 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ebbcfd",
"description": "A finite volume euler equation cfd solver",
"copyright": "Copyright © 2016, Robert F. Rau II",
"authors": ["Robert F. Rau II"],
"dependencies": {
"numd": "~>0.1.0",
"mpi": {"path": "./OpenMPI/", "optional": true, "default": true},
"mir": "~>3.2.0"
},
"configurations": [
{
"sourceFiles": [
"app/solver.d"
],
"name": "solver",
"targetName": "ebb-solve",
"targetType": "executable"
},
{
"sourceFiles": [
"app/mesher.d"
],
"name": "mesher",
"targetName": "ebb-mesh",
"targetType": "executable"
},
{
"sourceFiles": [
"app/plotter.d"
],
"name": "plotter",
"targetName": "ebb-plot",
"targetType": "executable"
},
{
"sourceFiles": [
"app/post.d"
],
"name": "post",
"targetName": "ebb-post",
"targetType": "executable"
},
{
"sourceFiles": [
"app/reconstruct.d"
],
"name": "recon",
"targetName": "ebb-reconstruct",
"targetType": "executable"
},
{
"sourceFiles": [
"app/ms.d"
],
"name": "ms",
"targetName": "ebb-manufacture",
"targetType": "executable"
}
],
"lflags": ["-lparmetis", "-lmetis"],
"buildTypes": {
"debug": {
"buildOptions": ["debugMode", "debugInfo"]
},
"ldc-release": {
"buildOptions": ["releaseMode", "inline"],
"dflags": ["-O3", "-enable-cross-module-inlining"]
},
"flux-release": {
"buildOptions": ["releaseMode", "inline"],
"dflags": ["-O5", "-I/home/rrau/numd"],
"lflags": ["-L/usr/lib64", "-L$HOME/lib", "-L$HOME/ldc2-1.0.0-linux-x86_64/lib", "-L$PARMETIS_LIB", "-L$METIS_LIB", "-L$MPI_HOME/lib"]
},
"ccc-release": {
"buildOptions": ["releaseMode", "inline"],
"dflags": ["-O5", "-I/export/home/rrau/numd"],
"lflags": ["-L/usr/lib64", "-L$HOME/ldc2-1.2.0-linux-x86_64/lib", "-L/usr/local/lib", "-L$MPIHOME/lib"]
},
"ccc-debug": {
"buildOptions": ["debugMode", "debugInfo"],
"lflags": ["-L/usr/lib64", "-L$HOME/ldc2-1.2.0-linux-x86_64/lib", "-L/usr/local/lib", "-L$MPIHOME/lib"]
},
"prof-release": {
"buildOptions": ["releaseMode", "inline", "optimize"],
"dflags": ["-I/home/rrau/numd", "-profile"],
"lflags": ["-L/usr/lib64", "-L$HOME/lib", "-L$HOME/ldc2-1.0.0-linux-x86_64/lib", "-L$PARMETIS_LIB", "-L$METIS_LIB", "-L$MPI_HOME/lib"]
},
"ldc-release-prof": {
"buildOptions": ["releaseMode", "inline", "debugInfo"],
"dflags": ["-O5"]
}
}
}