forked from otland/forgottenserver
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCMakePresets.json
More file actions
65 lines (65 loc) · 1.25 KB
/
CMakePresets.json
File metadata and controls
65 lines (65 loc) · 1.25 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
{
"$schema": "https://cmake.org/cmake/help/v3.30/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json",
"version": 9,
"cmakeMinimumRequired": {
"major": 3,
"minor": 30,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build"
},
{
"name": "default",
"description": "Generate Ninja project files",
"inherits": [
"base"
]
},
{
"name": "vcpkg",
"description": "Configure with vcpkg toolchain and generate Ninja project files",
"inherits": [
"base"
],
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default"
},
{
"name": "vcpkg",
"configurePreset": "vcpkg"
}
],
"testPresets": [
{
"name": "base",
"hidden": true,
"output": {
"outputOnFailure": true
}
},
{
"name": "default",
"inherits": [
"base"
],
"configurePreset": "default"
},
{
"name": "vcpkg",
"inherits": [
"base"
],
"configurePreset": "vcpkg"
}
]
}