mirror of https://github.com/OpenVPN/openvpn-gui
CMakePresets.json: use MSVC generator for ARM64 builds
Sadly, CMake/Ninja combo doesn't work well for ARM64 (similar to https://stackoverflow.com/questions/47581784/building-a-x86-application-with-cmake-ninja-and-clang-on-x64-windows) - it silently produces x64 binaries instead of arm64. Switch to slower MSVC generator. Signed-off-by: Lev Stipakov <lev@openvpn.net>pull/501/head
parent
307e043d7e
commit
09aa7ef730
|
@ -38,11 +38,10 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "arm64",
|
"name": "arm64",
|
||||||
"generator": "Ninja",
|
"generator": "Visual Studio 16 2019",
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"architecture": {
|
"architecture": {
|
||||||
"value": "arm64",
|
"value": "arm64"
|
||||||
"strategy": "external"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue