Package org.gradle.nativeplatform
Interface TargetMachineFactory
public interface TargetMachineFactory
A factory for creating
TargetMachine
objects.- Since:
- 5.1
-
Method Summary
Modifier and TypeMethodDescriptiongetLinux()
Returns aTargetMachineBuilder
for the Linux operating system family and the architecture of the current host.getMacOS()
Returns aTargetMachineBuilder
for the macOS operating system family and the architecture of the current host.Returns aTargetMachineBuilder
for the Windows operating system family and the architecture of the current host.Returns aTargetMachineBuilder
representing the specified operating system and the architecture of the current host.
-
Method Details
-
getWindows
TargetMachineBuilder getWindows()Returns aTargetMachineBuilder
for the Windows operating system family and the architecture of the current host. -
getLinux
TargetMachineBuilder getLinux()Returns aTargetMachineBuilder
for the Linux operating system family and the architecture of the current host. -
getMacOS
TargetMachineBuilder getMacOS()Returns aTargetMachineBuilder
for the macOS operating system family and the architecture of the current host. -
os
Returns aTargetMachineBuilder
representing the specified operating system and the architecture of the current host.
-