Update cmake presets

This commit is contained in:
Christian Heitman 2026-04-13 10:37:12 -03:00
parent fabc643f21
commit 12fb3c2742
No known key found for this signature in database
GPG key ID: 0417A8664956113B

View file

@ -44,6 +44,14 @@
"strategy": "external"
}
},
{
"name": "arm64",
"hidden": true,
"architecture": {
"value": "arm64",
"strategy": "external"
}
},
{
"name": "linux-x64",
"inherits": [ "ninja", "x64", "locations-base", "vcpkg-base", "warnings-base" ],
@ -54,8 +62,8 @@
}
},
{
"name": "macos-x64",
"inherits": [ "ninja", "x64", "locations-base", "vcpkg-base", "warnings-base" ],
"name": "macos-arm64",
"inherits": [ "ninja", "arm64", "locations-base", "vcpkg-base", "warnings-base" ],
"condition": {"type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin"}
},
{
@ -72,8 +80,8 @@
"condition": {"type": "equals", "lhs": "${hostSystemName}", "rhs": "Linux"}
},
{
"name": "build-macos-x64",
"configurePreset": "macos-x64",
"name": "build-macos-arm64",
"configurePreset": "macos-arm64",
"nativeToolOptions": [ "-v" ],
"condition": {"type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin"}
},
@ -102,8 +110,8 @@
"condition": {"type": "equals", "lhs": "${hostSystemName}", "rhs": "Linux"}
},
{
"name": "test-macos-x64",
"configurePreset": "macos-x64",
"name": "test-macos-arm64",
"configurePreset": "macos-arm64",
"inherits": [ "test-base" ],
"condition": {"type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin"}
},