Newer
Older

Soeren Peters
committed
{
"minor": 20,
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
"patch": 0
},
"configurePresets": [
{
"name": "default",
"hidden": true,
"binaryDir": "${sourceDir}/build/",
"cacheVariables": {
"BUILD_VF_UNIT_TESTS": "ON"
}
},
{
"name": "default_make",
"inherits": "default",
"hidden": true,
"generator": "Unix Makefiles"
},
{
"name": "default_msvc",
"inherits": "default",
"hidden": true,
"generator": "Visual Studio 16 2019",
"architecture": "x64"
},
{
"name": "default_cpu",
"hidden": true,
"description": "CPU build of VirtualFluids",
"cacheVariables": {
"BUILD_VF_CPU": "ON",
"BUILD_VF_DOUBLE_ACCURACY": "ON"
}
},
{
"name": "default_gpu",
"hidden": true,
"description": "GPU build of VirtualFluids",
"cacheVariables": {
"BUILD_VF_GPU": "ON",
"BUILD_VF_DOUBLE_ACCURACY": "OFF"
}
},
{
"name": "default_gpu_numerical_tests",
"inherits": [
"default_gpu"
],
"hidden": true,
"description": "GPU numerical tests of VirtualFluids",
"cacheVariables": {
"BUILD_VF_DOUBLE_ACCURACY": "ON",
"BUILD_NUMERIC_TESTS": "ON"
}
},
{
"name": "default_all",
"hidden": true,
"description": "All build of VirtualFluids",
"inherits": [
"default_cpu",
"default_gpu"
],
"cacheVariables": {
"BUILD_VF_DOUBLE_ACCURACY": "ON"
}
},
{
"name": "cpu_make",
"inherits": [
"default_make",
"default_cpu"
],
"displayName": "cpu make configuration"
},
{
"name": "cpu_msvc",
"inherits": [
"default_msvc",
"default_cpu"
],
"displayName": "cpu msvc configuration"
},
{
"name": "gpu_make",
"inherits": [
"default_make",
"default_gpu"
],
"displayName": "gpu make configuration"
},
{
"name": "gpu_msvc",
"inherits": [
"default_msvc",
"default_gpu"
],
"displayName": "gpu msvc configuration"
},
{
"name": "all_make",
"inherits": [
"default_make",
"default_all"
],
"displayName": "all make configuration"
},
{
"name": "all_msvc",
"inherits": [
"default_msvc",
"default_all"
],
"displayName": "all msvc configuration"
},
{
"name": "gpu_numerical_tests_make",
"inherits": [
"default_make",
"default_gpu_numerical_tests"
],
"displayName": "gpu numerical tests make configuration"
},
{
"name": "gpu_numerical_tests_msvc",
"inherits": [
"default_msvc",
"default_gpu_numerical_tests"
],
"displayName": "gpu numerical tests msvc configuration"
}
]