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-x86_64.cmake
Normal file
10
cmake/linux-x86_64.cmake
Normal file
@@ -0,0 +1,10 @@
|
||||
# Toolchain for building x86_64 Linux binaries
|
||||
set(CMAKE_SYSTEM_NAME Linux)
|
||||
set(CMAKE_SYSTEM_PROCESSOR x86_64)
|
||||
set(CMAKE_C_COMPILER x86_64-linux-gnu-gcc)
|
||||
set(CMAKE_CXX_COMPILER x86_64-linux-gnu-g++)
|
||||
set(CMAKE_FIND_ROOT_PATH /usr/x86_64-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)
|
||||
Reference in New Issue
Block a user