Newer
Older

Soeren Peters
committed
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
{
"version": 1,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"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_ccache_make",
"inherits": "default_make",
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_COMPILER_LAUNCHER": "ccache",
"CMAKE_CUDA_COMPILER_LAUNCHER": "ccache",
"CMAKE_C_COMPILER_LAUNCHER": "ccache"
}
},
{
"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": {

Soeren Peters
committed
"BUILD_VF_CPU": "ON",
"BUILD_VF_DOUBLE_ACCURACY": "ON"

Soeren Peters
committed
}
},
{
"name": "default_gpu",
"hidden": true,
"description": "GPU build of VirtualFluids",
"cacheVariables": {

Soeren Peters
committed
"BUILD_VF_GPU": "ON",
"BUILD_VF_DOUBLE_ACCURACY": "OFF"

Soeren Peters
committed
}
},
{
"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",

Soeren Peters
committed
"inherits": ["default_cpu", "default_gpu"],
"cacheVariables": {
"BUILD_VF_DOUBLE_ACCURACY": "ON"
}

Soeren Peters
committed
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
137
138
},
{
"name": "cpu_make",
"inherits": ["default_make", "default_cpu"],
"displayName": "cpu make configuration"
},
{
"name": "cpu_make_ccache",
"inherits": ["default_ccache_make", "default_cpu"],
"displayName": "cpu ccache 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_make_ccache",
"inherits": ["default_ccache_make", "default_gpu"],
"displayName": "gpu ccache 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_make_ccache",
"inherits": ["default_ccache_make", "default_all"],
"displayName": "all ccache 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_ccache_make",
"inherits": ["default_ccache_make", "default_gpu_numerical_tests"],
"displayName": "gpu numerical tests ccache make configuration"
},
{
"name": "gpu_numerical_tests_msvc",
"inherits": ["default_msvc", "default_gpu_numerical_tests"],
"displayName": "gpu numerical tests msvc configuration"
}
]
}