forked from adamantine-sim/adamantine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
32 lines (31 loc) · 937 Bytes
/
CMakePresets.json
File metadata and controls
32 lines (31 loc) · 937 Bytes
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
{
"version": 6,
"configurePresets": [
{
"name": "generic-gcc-ninja",
"displayName": "Generic (gcc-ninja)",
"description": "Basic configuration with the GCC toolchain using Ninja generator.",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "g++"
}
}
],
"buildPresets": [
{
"name": "build-debug-gcc-ninja",
"displayName": "Debug (gcc-ninja)",
"description": "Compile a debug build using GCC.",
"configurePreset": "generic-gcc-ninja",
"configuration": "Debug"
},
{
"name": "build-release-gcc-ninja",
"displayName": "Release (gcc-ninja)",
"description": "Compile a release build using GCC.",
"configurePreset": "generic-gcc-ninja",
"configuration": "Release"
}
]
}