aboutsummaryrefslogtreecommitdiff
path: root/CMakePresets.json
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-07-31 09:47:13 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-08-16 21:19:12 +0100
commit3885441ee0d35a40904995ede68120fea471dde7 (patch)
tree3d4dcec1e490611a889ee1db0359daab2379a67e /CMakePresets.json
parent7681746b20dd58e7d3e6d2852f07fb876383a133 (diff)
downloadbitcoin-3885441ee0d35a40904995ede68120fea471dde7.tar.xz
cmake: Add presets for native Windows builds
Diffstat (limited to 'CMakePresets.json')
-rw-r--r--CMakePresets.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/CMakePresets.json b/CMakePresets.json
new file mode 100644
index 0000000000..a5f2ce7919
--- /dev/null
+++ b/CMakePresets.json
@@ -0,0 +1,42 @@
+{
+ "version": 3,
+ "cmakeMinimumRequired": {"major": 3, "minor": 21, "patch": 0},
+ "configurePresets": [
+ {
+ "name": "vs2022",
+ "displayName": "Build using 'Visual Studio 17 2022' generator and 'x64-windows' triplet",
+ "condition": {
+ "type": "equals",
+ "lhs": "${hostSystemName}",
+ "rhs": "Windows"
+ },
+ "generator": "Visual Studio 17 2022",
+ "architecture": "x64",
+ "toolchainFile": "$env{VCPKG_ROOT}\\scripts\\buildsystems\\vcpkg.cmake",
+ "cacheVariables": {
+ "VCPKG_TARGET_TRIPLET": "x64-windows",
+ "BUILD_GUI": "ON",
+ "WITH_QRENCODE": "OFF",
+ "WITH_NATPMP": "OFF"
+ }
+ },
+ {
+ "name": "vs2022-static",
+ "displayName": "Build using 'Visual Studio 17 2022' generator and 'x64-windows-static' triplet",
+ "condition": {
+ "type": "equals",
+ "lhs": "${hostSystemName}",
+ "rhs": "Windows"
+ },
+ "generator": "Visual Studio 17 2022",
+ "architecture": "x64",
+ "toolchainFile": "$env{VCPKG_ROOT}\\scripts\\buildsystems\\vcpkg.cmake",
+ "cacheVariables": {
+ "VCPKG_TARGET_TRIPLET": "x64-windows-static",
+ "BUILD_GUI": "ON",
+ "WITH_QRENCODE": "OFF",
+ "WITH_NATPMP": "OFF"
+ }
+ }
+ ]
+}