-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCMakePresets.json
116 lines (116 loc) · 3.75 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
109
110
111
112
113
114
115
116
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 22,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"description": "Sets generator, build and install directory, vcpkg",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}/far/plugins/FarColorer"
}
},
{
"name": "x64",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"COLORER_BUILD_ARCH": "x64"
},
"hidden": true
},
{
"name": "x86",
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"COLORER_BUILD_ARCH": "x86"
},
"hidden": true
},
{
"name": "arm64",
"architecture": {
"value": "arm64",
"strategy": "external"
},
"cacheVariables": {
"COLORER_BUILD_ARCH": "arm64"
},
"hidden": true
},
{
"name": "Debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"hidden": true
},
{
"name": "Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
},
"hidden": true
},
{
"name": "RelWithDebInfo",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
},
"hidden": true
},
{
"name": "ICU",
"cacheVariables": {
"FARCOLORER_LEGACY": "OFF"
},
"hidden": true
},
{
"name": "MSVC",
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_COMPILER": "cl.exe"
},
"toolset": {
"value": "host=x64",
"strategy": "external"
}
},
{
"name": "Clang-win",
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_COMPILER": "clang-cl.exe"
},
"toolset": {
"value": "host=x64",
"strategy": "external"
}
},
{ "name": "msvc-x64-Debug", "description": "MSVC for x64 (Debug, Legacy)", "inherits": [ "base", "x64", "Debug", "MSVC"] },
{ "name": "msvc-x64-Release", "description": "MSVC for x64 (Release, Legacy)", "inherits": [ "base", "x64", "Release", "MSVC" ] },
{ "name": "msvc-x64-Debug-ICU", "description": "MSVC for x64 (Debug, ICU)", "inherits": [ "base", "x64", "Debug", "MSVC", "ICU" ] },
{ "name": "msvc-x64-Release-ICU", "description": "MSVC for x64 (Release, ICU)", "inherits": [ "base", "x64", "Release", "MSVC", "ICU" ] },
{ "name": "msvc-x86-Debug", "description": "MSVC for x86 (Debug, Legacy)", "inherits": [ "base", "x86", "Debug", "MSVC" ] },
{ "name": "msvc-x86-Release", "description": "MSVC for x86 (Release, Legacy)", "inherits": [ "base", "x86", "Release", "MSVC"] },
{ "name": "msvc-x86-Debug-ICU", "description": "MSVC for x86 (Debug, ICU)", "inherits": [ "base", "x86", "Debug", "MSVC", "ICU" ] },
{ "name": "msvc-x86-Release-ICU", "description": "MSVC for x86 (Release, ICU)", "inherits": [ "base", "x86", "Release", "MSVC", "ICU" ] },
{ "name": "msvc-arm64-Debug", "description": "MSVC for ARM64 (Debug, Legacy)", "inherits": [ "base", "arm64", "Debug", "MSVC" ] },
{ "name": "msvc-arm64-Release", "description": "MSVC for ARM64 (Release, Legacy)", "inherits": [ "base", "arm64", "Release", "MSVC" ] },
{ "name": "msvc-arm64-Debug-ICU", "description": "MSVC for ARM64 (Debug, ICU)", "inherits": [ "base", "arm64", "Debug", "MSVC", "ICU" ] },
{ "name": "msvc-arm64-Release-ICU", "description": "MSVC for ARM64 (Release, ICU)", "inherits": [ "base", "arm64", "Release", "MSVC", "ICU" ] }
]
}