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:
10
cmake/linux-armhf.cmake
Normal file
10
cmake/linux-armhf.cmake
Normal 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)
|
||||
Reference in New Issue
Block a user