Package org.gradle.tooling.model.cpp
Interface CppComponent
- All Known Subinterfaces:
- CppApplication,- CppLibrary,- CppTestSuite
public interface CppComponent
Represents a C++ component.
- Since:
- 4.10
- 
Method SummaryModifier and TypeMethodDescriptionReturns the base name of this component.DomainObjectSet<? extends CppBinary> All binaries buildable for this component.getName()Returns the name of this component.
- 
Method Details- 
getNameString 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.
- 
getBinariesDomainObjectSet<? extends CppBinary> getBinaries()All binaries buildable for this component. These will implementCppExecutable,CppSharedLibraryorCppStaticLibrary.
- 
getBaseNameString getBaseName()Returns the base name of this component.
 
-