Package org.gradle.nativeplatform
Class NativeExecutableFileSpec
- java.lang.Object
-
- org.gradle.nativeplatform.NativeExecutableFileSpec
-
@Incubating public class NativeExecutableFileSpec extends java.lang.Object
Specifies how to build and where to place a native executable file.TODO:HH resolve naming conflict with existing NativeExecutableSpec
-
-
Constructor Summary
Constructors Constructor Description NativeExecutableFileSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.File
getFile()
NativeToolChain
getToolChain()
The Tool Chain that produces the native executable.void
setFile(java.io.File file)
void
setToolChain(NativeToolChain toolChain)
Sets the Tool Chain that produces the native executable.
-
-
-
Method Detail
-
getFile
public java.io.File getFile()
-
setFile
public void setFile(java.io.File file)
-
getToolChain
public NativeToolChain getToolChain()
The Tool Chain that produces the native executable.- Since:
- 4.7
-
setToolChain
public void setToolChain(NativeToolChain toolChain)
Sets the Tool Chain that produces the native executable.- Since:
- 4.7
-
-