api / org.gradle.nativeplatform.test.cpp / CppTestExecutable

CppTestExecutable

@Incubating interface CppTestExecutable : CppBinary, ComponentWithExecutable, ComponentWithInstallation, TestComponent

A test executable with tests implemented in C++.

Since
4.5

Inherited Properties

DEBUGGABLE_ATTRIBUTE

static val DEBUGGABLE_ATTRIBUTE: Attribute<Boolean>

The dependency resolution attribute use to indicate whether a binary is debuggable or not.

LINKAGE_ATTRIBUTE

static val LINKAGE_ATTRIBUTE: Attribute<Linkage>

The dependency resolution attribute use to indicate which linkage a binary uses.

OPTIMIZED_ATTRIBUTE

static val OPTIMIZED_ATTRIBUTE: Attribute<Boolean>

The dependency resolution attribute use to indicate whether a binary is optimized or not.

Functions

getRunTask

abstract fun getRunTask(): Provider<out RunTestExecutable>

{@inheritDoc}

Inherited Functions

getCompileIncludePath

abstract fun getCompileIncludePath(): FileCollection

Returns the header directories to use to compile this binary. Includes the header directories of this binary plus those of its dependencies.

getCompileTask

abstract fun getCompileTask(): Provider<CppCompile>

Returns the compile task for this binary.

getCppSource

abstract fun getCppSource(): FileCollection

Returns the C++ source files of this binary.

getExecutableFile

abstract fun getExecutableFile(): Provider<RegularFile>

Returns the executable file to produce.

getInstallDirectory

abstract fun getInstallDirectory(): Provider<Directory>

Returns the installation directory.

getInstallTask

abstract fun getInstallTask(): Provider<out InstallExecutable>

Returns the install task.

getLinkLibraries

abstract fun getLinkLibraries(): FileCollection

Returns the link libraries to use to link this binary. Includes the link libraries of the component's dependencies.

getLinkTask

abstract fun getLinkTask(): Provider<out LinkExecutable>

Returns the link task for the executable.

getRuntimeLibraries

abstract fun getRuntimeLibraries(): FileCollection

Returns the runtime libraries required by this binary. Includes the runtime libraries of the component's dependencies.

getTargetPlatform

abstract fun getTargetPlatform(): CppPlatform

{@inheritDoc}