forked from precice/precice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
82 lines (82 loc) · 2.34 KB
/
CMakePresets.json
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
{
"version": 3,
"configurePresets": [
{
"name": "base",
"hidden": true,
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
}
},
{
"name": "production",
"inherits": "base",
"displayName": "Production release",
"description": "Release configuration for preCICE used in production.",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INTERPROCEDURAL_OPTIMIZATION": "ON"
}
},
{
"name": "production-audit",
"inherits": "production",
"displayName": "Production release with assertions",
"description": "Release build assertions enabled for auditting a specific run.",
"cacheVariables": {
"PRECICE_RELEASE_WITH_ASSERTIONS": "ON",
"PRECICE_RELEASE_WITH_DEBUG_LOG": "ON"
}
},
{
"name": "develop",
"inherits": "base",
"displayName": "Development",
"description": "Development config with default settings",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-Wall -Wextra -Wno-unused-parameter"
},
"warnings": {
"dev": true,
"deprecated": true,
"uninitialized": true
}
},
{
"name": "debian-package",
"inherits": "production",
"displayName": "Debian package",
"description": "Build for the generation of Debian packages",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "/usr",
"CPACK_GENERATOR": "DEB",
"BUILD_TESTING": "OFF"
}
},
{
"name": "optimized-debug",
"inherits": "base",
"displayName": "Optimized debug",
"description": "Optimized debug build log and assertions enabled",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"PRECICE_RELEASE_WITH_ASSERTIONS": "ON",
"PRECICE_RELEASE_WITH_DEBUG_LOG": "ON",
"CMAKE_CXX_FLAGS": "-fno-omit-frame-pointer"
}
},
{
"name": "profiling",
"inherits": "develop",
"displayName": "Profiling",
"description": "Profiling configuration",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_INTERPROCEDURAL_OPTIMIZATION": "ON",
"CMAKE_CXX_FLAGS": "-Wall -Wextra -Wno-unused-parameter -fno-omit-frame-pointer"
}
}
]
}