WindowsResourceSet

API Documentation:WindowsResourceSet

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

A set of Windows Resource definition files.

A Windows Resource set contains a set of script files, together with an optional set of header files.

apply plugin: "windows-resources"

model {
    components {
        main(NativeLibrarySpec) {
            sources {
                rc {
                    source {
                        srcDirs "src/main/rc"
                        include "**/*.rc"
                    }
                    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