Added cross compilation for arm & arm64 linux architectures in CMakePresets.json (for faster CI/CD builds)

This commit is contained in:
Patrix
2024-05-02 13:38:54 +02:00
parent cd74ad2b99
commit c2e2a4ad4d

View File

@@ -60,7 +60,8 @@
"strategy": "external" "strategy": "external"
}, },
"cacheVariables": { "cacheVariables": {
"OUT_FILE_SUFFIX": "arm" "OUT_FILE_SUFFIX": "arm",
"CMAKE_TOOLCHAIN_FILE": "linux-arm.cmake"
} }
}, },
{ {
@@ -71,7 +72,8 @@
"strategy": "external" "strategy": "external"
}, },
"cacheVariables": { "cacheVariables": {
"OUT_FILE_SUFFIX": "arm64" "OUT_FILE_SUFFIX": "arm64",
"CMAKE_TOOLCHAIN_FILE": "linux-arm64.cmake"
} }
}, },
{ {