minecraft-pi-reborn/cmake/x86_64-toolchain.cmake
TheBrokenRail db64afc550
All checks were successful
minecraft-pi-reborn/pipeline/head This commit looks good
Improve Build System
2021-09-16 22:00:40 -04:00

9 lines
285 B
CMake

# Compile For x86_64
if(NOT CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL "x86_64")
# Use x86_64 Cross-Compiler
include("${CMAKE_CURRENT_LIST_DIR}/base-toolchain.cmake")
setup_toolchain("x86_64-linux-gnu")
endif()
set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_PROCESSOR "x86_64")