-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
47 lines (44 loc) · 1.16 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
{
"version": 3,
"cmakeMinimumRequired": { "major": 3, "minor": 21, "patch": 0 },
"configurePresets": [
{
"name": "vcpkg",
"hidden": true,
"toolchainFile": "${sourceParentDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "${sourceParentDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
}
},
{
"name": "msvc",
"displayName": "MSVC 2022",
"description": "MSVC 2022 Development configuration",
"generator": "Visual Studio 17 2022",
"architecture" : "x64",
"binaryDir": "${sourceParentDir}/build",
"inherits" : ["vcpkg"]
},
{
"name": "xcode",
"displayName": "Xcode",
"generator": "Xcode",
"binaryDir": "${sourceParentDir}/build",
"inherits" : ["vcpkg"]
},
{
"name": "ninja",
"displayName": "Ninja",
"generator": "Ninja",
"binaryDir": "${sourceParentDir}/build",
"inherits" : ["vcpkg"]
},
{
"name": "make",
"displayName": "Unix Makefiles",
"generator": "Unix Makefiles",
"binaryDir": "${sourceParentDir}/build",
"inherits" : ["vcpkg"]
}
]
}