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-armhf.cmake Normal file
View File

@@ -0,0 +1,10 @@
# Toolchain for Linux ARM (armhf)
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR arm)
set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc)
set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++)
set(CMAKE_FIND_ROOT_PATH /usr/arm-linux-gnueabihf)
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)