Package org.gradle.tooling.model.cpp
Interface CppComponent
-
- All Known Subinterfaces:
CppApplication,CppLibrary,CppTestSuite
@Incubating public interface CppComponent
Represents a C++ component.- Since:
- 4.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBaseName()Returns the base name of this component.DomainObjectSet<? extends CppBinary>getBinaries()All binaries buildable for this component.StringgetName()Returns the name of this component.
-
-
-
Method Detail
-
getName
String getName()
Returns the name of this component. This is used to disambiguate the component of a project. Each component has a unique name within its project. However, these names are not unique across multiple projects.
-
getBinaries
DomainObjectSet<? extends CppBinary> getBinaries()
All binaries buildable for this component. These will implementCppExecutable,CppSharedLibraryorCppStaticLibrary.
-
getBaseName
String getBaseName()
Returns the base name of this component.
-
-