/gradle-editbin-plugin

Primary LanguageGroovyOtherNOASSERTION

Gradle plugin for invoking editbin

Usage

Set <a DLL file path> as large address aware using default installation folders of Microsoft Visual C++ BuildTools and calling vcvars32.bat in order to setup properly PATH with binaries.

editbin {
    targetFileName  = <a DLL file path>
    enableLargeAddressAware = true
    useEnvSetupBat = true
}

Set <a DLL file path> as large address aware using <editbin folder> where all the necessary binaries to execute editbin.exe are present.

editbin {
    targetFileName  = <a DLL file path>
    enableLargeAddressAware = true
    editbinFolder = <editbin folder>
}