TargetARM

From Xojo Documentation

Constant As Boolean

anBoolean = TargetARM

Used to indicate that you are compiling code for the ARM CPU.

Usage

result = TargetARM

Part Type Description
result Boolean Returns True if you are compiling or running for an ARM CPU, such as for the Raspberry Pi or iOS.

Notes

When building for Raspberry Pi, TargetLinux also returns True.

To detect Raspberry Pi, use these build constants:

#If TargetLinux And TargetARM And Target32bit Then
// Raspberry Pi
#Endif

See Also

DebugBuild, XojoVersion, XojoVersionString, TargetBigEndian, TargetCocoa, TargetDesktop, TargetLittleEndian, TargetLinux, TargetMachO, TargetMacOS, TargetWeb, TargetWindows, TargetX86 constants; #If...#Endif statement.