Initial Commit

- Add Support for 64-Bit Linux
- Add Support for 32-Bit Linux
- Add Support for 64-Bit Arm Linux (aarch64)
- Add Support for 32-Bit Arm Linux (armhf)
- Add Support for 64-Bit Windows (mingw)
This commit is contained in:
2025-10-27 16:35:26 +01:00
commit bbdead18d8
7 changed files with 61 additions and 0 deletions

10
cmake/linux-aarch64.cmake Normal file
View File

@@ -0,0 +1,10 @@
# Toolchain for Linux AArch64 (ARM64)
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR aarch64)
set(CMAKE_C_COMPILER aarch64-linux-gnu-gcc)
set(CMAKE_CXX_COMPILER aarch64-linux-gnu-g++)
set(CMAKE_FIND_ROOT_PATH /usr/aarch64-linux-gnu)
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)