-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakePresets.json
38 lines (38 loc) · 977 Bytes
/
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": 3,
"configurePresets": [
{
"name": "msvc-x86",
"description": "使用 CMake 生成 MSVC x86 项目",
"generator": "Visual Studio 17 2022",
"architecture": {
"value": "Win32",
"strategy": "set"
},
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_HOST_TRIPLET": "x86-windows-static",
"VCPKG_TARGET_TRIPLET": "x86-windows-static"
}
}
],
"buildPresets": [
{
"name": "msvc-x86-debug",
"configurePreset": "msvc-x86",
"configuration": "Debug"
},
{
"name": "msvc-x86-release",
"configurePreset": "msvc-x86",
"configuration": "Release"
},
{
"name": "msvc-x86-publish",
"inherits": "msvc-x86-release",
"targets": "install"
}
]
}