-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
108 lines (108 loc) · 3.19 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
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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Default configuration",
"description": "Default configuration with all the options set to their default values",
"binaryDir": "${sourceDir}/build/",
"installDir": "${sourceDir}/install/",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": {
"type": "STRING",
"value": "Release"
},
"CMAKE_TOOLCHAIN_FILE" : {
"type": "STRING",
"value": "conan_toolchain.cmake"
},
"CMAKE_PREFIX_PATH": {
"type": "PATH",
"value": "./build/Release/generators"
},
"CMAKE_INSTALL_PREFIX": {
"type": "PATH",
"value": "./install"
}
}
},
{
"name": "conan",
"inherits": "default",
"displayName": "Conan",
"cacheVariables": {
"USING_PACKAGE_MANAGER_CONAN": {
"type": "BOOL",
"value": true
},
"CONAN_DISABLE_CHECK_COMPILER": {
"type": "BOOL",
"value": true
}
}
},
{
"name": "vcpkg-default-triplet",
"inherits": "default",
"displayName": "vcpkg | default triplet",
"cacheVariables": {
"USING_PACKAGE_MANAGER_VCPKG": {
"type": "BOOL",
"value": true
},
"CMAKE_TOOLCHAIN_FILE": {
"type": "FILEPATH",
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
}
},
{
"name": "vcpkg-windows-static",
"inherits": "vcpkg-default-triplet",
"displayName": "vcpkg | Windows | static",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": {
"type": "STRING",
"value": "x64-windows-static"
},
"CRT_LINKAGE_STATIC": {
"type": "BOOL",
"value": true
}
}
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default",
"targets": "install"
},
{
"name": "conan",
"configurePreset": "conan",
"targets": "install"
},
{
"name": "vcpkg-default-triplet",
"configurePreset": "vcpkg-default-triplet",
"targets": "install"
},
{
"name": "vcpkg-windows-static",
"configurePreset": "vcpkg-windows-static",
"targets": "install"
},
{
"name": "conan_build",
"description": "",
"displayName": ""
}
]
}