|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.Namedorg.gradle.plugins.cpp.model.CppSourceSet
public interface CppSourceSet extends Named
A CppSourceSet represents a logical group of C++ source.
Method Summary | |
---|---|
CppSourceSet
|
cpp(groovy.lang.Closure configureClosure)
Configures the C++ source for this set. |
SourceDirectorySet
|
getCpp()
Returns the C++ source which is to be compiled by the C++ compiler. |
SourceDirectorySet
|
getHeaders()
Returns the local header files associated with this source. |
java.lang.String
|
getName()
Returns the name of this source set. |
CppSourceSet
|
headers(groovy.lang.Closure configureClosure)
Configures the headers for this set. |
Methods inherited from interface Named | |
---|---|
getName |
Method Detail |
---|
public CppSourceSet cpp(groovy.lang.Closure configureClosure)
The given closure is used to configure the SourceDirectorySet which contains the C++ source.
configureClosure
- The closure to use to configure the C++ source.
public SourceDirectorySet getCpp()
public SourceDirectorySet getHeaders()
public java.lang.String getName()
public CppSourceSet headers(groovy.lang.Closure configureClosure)
The given closure is used to configure the SourceDirectorySet which contains the header files.
configureClosure
- The closure to use to configure the header files source.
Groovy Documentation