-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
38 lines (38 loc) · 1.42 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
{
"version": 8,
"configurePresets": [
{
"name": "aarch64-debug",
"displayName": "aarch64 Debug",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"toolchainFile": "${sourceDir}/.toolchains/aarch64-linux-gnu.cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "aarch64-release",
"displayName": "aarch64 Release",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"toolchainFile": "${sourceDir}/.toolchains/aarch64-linux-gnu.cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "x86-64-debug",
"displayName": "x86-64 Debug",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"toolchainFile": "${sourceDir}/.toolchains/x86-64-linux-gnu.cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
}
]
}