-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
121 lines (121 loc) · 3.18 KB
/
Copy pathCMakePresets.json
File metadata and controls
121 lines (121 loc) · 3.18 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
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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 28,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_CXX_STANDARD": "26",
"CMAKE_CXX_EXTENSIONS": "OFF",
"LIB_SMOKE_WITH_FOLLY": "OFF",
"LIB_SMOKE_WITH_HPX": "OFF",
"STACK_WITH_HWLOC": "ON",
"STACK_WITH_FLATBUFFERS": "ON",
"STACK_WITH_BENCHMARK": "ON",
"STACK_WITH_MIMALLOC": "ON",
"STACK_WITH_MOODYCAMEL": "ON",
"STACK_WITH_HDRHISTOGRAM": "ON",
"STACK_WITH_SBE_CODEGEN": "ON",
"STACK_WITH_LIBNUMA": "ON",
"STACK_WITH_LIBURING": "ON"
}
},
{
"name": "clion-debug",
"displayName": "CLion Debug (recommended)",
"description": "Primary CLion profile: Debug + compile_commands for full IntelliSense",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_PREFIX_PATH": "/opt/homebrew;/usr/local;$env{HOME}/cpp-deps/hpx"
}
},
{
"name": "clion-release",
"displayName": "CLion Release",
"description": "Release profile for benchmarks and production-like runs",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_PREFIX_PATH": "/opt/homebrew;/usr/local;$env{HOME}/cpp-deps/hpx"
}
},
{
"name": "clion-relwithdebinfo",
"displayName": "CLion RelWithDebInfo",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_PREFIX_PATH": "/opt/homebrew;/usr/local;$env{HOME}/cpp-deps/hpx"
}
},
{
"name": "linux-debug",
"displayName": "Linux Debug",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_PREFIX_PATH": "/usr;/usr/local"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "default",
"displayName": "Default (Makefile-compatible build/)",
"inherits": "base",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_PREFIX_PATH": "/opt/homebrew;/usr/local;$env{HOME}/cpp-deps/hpx"
}
}
],
"buildPresets": [
{
"name": "clion-debug",
"configurePreset": "clion-debug",
"targets": ["ide_index", "lib_smoke", "test_ll_modules", "test_industry_stack", "test_roadmap_stack"]
},
{
"name": "clion-release",
"configurePreset": "clion-release"
},
{
"name": "default",
"configurePreset": "default"
},
{
"name": "ide-index",
"configurePreset": "clion-debug",
"targets": ["ide_index"]
}
],
"testPresets": [
{
"name": "clion-debug",
"configurePreset": "clion-debug",
"output": {
"outputOnFailure": true
}
},
{
"name": "default",
"configurePreset": "default",
"output": {
"outputOnFailure": true
}
}
]
}