-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCMakePresets.json
More file actions
22 lines (22 loc) · 1.12 KB
/
CMakePresets.json
File metadata and controls
22 lines (22 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"version": 3,
"configurePresets": [
{
"name": "default",
"displayName": "Default",
"description": "Default build using vcpkg (use --config Debug/Release at build time)",
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"VCPKG_TARGET_TRIPLET": "x64-windows-static",
"CMAKE_PREFIX_PATH": "vcpkg_installed/x64-windows-static",
"Protobuf_PROTOC_EXECUTABLE": "${sourceDir}/build/${presetName}/vcpkg_installed/x64-windows-static/tools/protobuf/protoc.exe",
"gRPC_DIR": "vcpkg_installed/x64-windows-static/share/grpc",
"nlohmann_json_DIR": "vcpkg_installed/x64-windows-static/share/nlohmann_json",
"x86_BUILD_TOOLS_PATH": "C:/Program Files (x86)/Windows Kits/10/bin/10.0.26100.0/x86/",
"x64_BUILD_TOOLS_PATH": "C:/Program Files (x86)/Windows Kits/10/bin/10.0.26100.0/x64"
}
}
]
}