Add CMake preset for ARM64 cross compilation build

This commit is contained in:
Louis Gombert 2024-10-27 20:47:11 +01:00
parent 279d5145ba
commit 19c47e6b44

View File

@ -42,6 +42,20 @@
"lhs": "${hostSystemName}", "lhs": "${hostSystemName}",
"rhs": "Linux" "rhs": "Linux"
} }
},
{
"name": "linux-cross-arm64",
"inherits": "defaults",
"generator": "Ninja Multi-Config",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "arm64-linux",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/cmake/toolchains/linux-aarch64-gcc-toolchain.cmake"
}
} }
], ],
"buildPresets": [ "buildPresets": [
@ -56,6 +70,10 @@
{ {
"name": "linux", "name": "linux",
"configurePreset": "linux" "configurePreset": "linux"
},
{
"name": "linux-cross-arm64",
"configurePreset": "linux-cross-arm64"
} }
], ],
"testPresets": [ "testPresets": [
@ -85,4 +103,4 @@
"configurePreset": "linux" "configurePreset": "linux"
} }
] ]
} }