lpac/cmake/linux-mingw64-woa.cmake
IcedTangerine e3a05fba53
feat: add WoA Release (#40)
* fix: use zero instand of NULL as dwFlags

* feat: add WoA GNU cross toolchain(experimental)

Cross compiling for Windows on Arm with GNU toolchain.
The toolchain is from https://github.com/Windows-on-ARM-Experiments/mingw-woarm64-build. This toolchain is experimental.
Tested compilation passed and successfully ran on WoA

* feat: add zig cross toolchain(experimental)

Cross compiling for WoA with zig

* feat: add WoA release, update build.yaml
2024-02-21 16:44:48 +08:00

14 lines
434 B
CMake

set(CMAKE_SYSTEM_NAME Windows)
set(TOOLCHAIN_PREFIX ${TOOLCHAIN_BIN_PATH}/aarch64-w64-mingw32)
set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}-gcc)
set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}-g++)
set(CMAKE_Fortran_COMPILER ${TOOLCHAIN_PREFIX}-gfortran)
set(CMAKE_RC_COMPILER ${TOOLCHAIN_PREFIX}-windres)
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)