com.xykivo.nativeextension
Owner: Dror Smolarsky
Extend native plugins
https://github.com/xykivo/tools
Sources: https://github.com/xykivo/tools
Version 0.1.0
0.1.0
Created 19 August 2015.
Extension to gradle native plugins
This plugin extends the gradle plugins for native code, it adds the following
- Copy shared libraries depenencies as part of executable install
- Add pre/post compile tasks
- Add pre/post link tasks
- Add pre/post install tasks
Add this plugin to your build using the plugins DSL:
plugins {
id("com.xykivo.nativeextension") version "0.1.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.xykivo.nativeextension:native_extension:0.1.0") } } apply(plugin = "com.xykivo.nativeextension")
- Applying plugins to all subprojects .