ObjectiveCppSourceSet

API Documentation:ObjectiveCppSourceSet

Note: This class is incubating and may change in a future version of Gradle.

A set of Objective-C++ source files.

An Objective-C++ source set contains a set of source files, together with an optional set of exported header files.

apply plugin: "objective-cpp"

model {
    components {
        main(NativeLibrarySpec) {
            sources {
                objcpp {
                    source {
                        srcDirs "src/main/objectiveCpp", "src/shared/objectiveCpp"
                        include "**/*.mm"
                    }
                    exportedHeaders {
                        srcDirs "src/main/include"
                    }
                }
            }
        }
    }
}

Properties

PropertyDescription
source
Incubating

The source files.

Methods

MethodDescription
source(config)
Incubating

Configure the sources

Script blocks

No script blocks

Property details

SourceDirectorySet source (read-only)

Note: This property is incubating and may change in a future version of Gradle.

The source files.

Method details

void source(Action<? super SourceDirectorySet> config)

Note: This method is incubating and may change in a future version of Gradle.

Configure the sources