Files
UnrealEngineUWP/Engine/Source/ThirdParty/CMake/PlatformScripts/Unix/Unix-aarch64-unknown-linux-gnueabi.cmake
Devin Doucette 565a2935c6 BuildCMakeLib: Added support for targeting the Unix platform group
#preflight 6261c9676119a1a496c533d6
#rb Zousar.Shaker

[CL 19863796 by Devin Doucette in ue5-main branch]
2022-04-22 08:56:28 -04:00

10 lines
367 B
CMake

# Copyright Epic Games, Inc. All Rights Reserved.
set(CMAKE_SYSTEM_PROCESSOR aarch64)
set(CMAKE_C_COMPILER_TARGET aarch64-unknown-linux-gnueabi)
set(CMAKE_CXX_COMPILER_TARGET aarch64-unknown-linux-gnueabi)
# Required for PlatformScripts/Unix/Unix to be found.
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/../..")
include(PlatformScripts/Unix/Unix)