File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,17 @@ task ghActions(type: ShadowJar) {
67
67
destinationDirectory = file(" $rootDir /actions" )
68
68
}
69
69
70
- task copyNativeBinaries (type : Copy ) {
70
+ task copyNativeBinaries () {
71
+ dependsOn(' copyLinux' )
72
+ dependsOn(' copyWindows' )
73
+ }
74
+
75
+ task copyLinux (type : Copy ) {
71
76
from " $rootDir /librconsole/target/x86_64-unknown-linux-gnu/release/librconsole.so"
72
77
into " $buildDir /resources/main/x86_64/linux/"
73
-
78
+ }
79
+
80
+ task copyWindows (type : Copy ) {
74
81
from " $rootDir /librconsole/target/x86_64-pc-windows-gnu/release/librconsole.dll"
75
82
into " $buildDir /resources/main/x86_64/windows/"
76
83
}
Original file line number Diff line number Diff line change 1
- pluginVersion = 0.1
1
+ pluginVersion = 0.2
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " librconsole"
3
- version = " 0.1 .0"
3
+ version = " 0.2 .0"
4
4
authors = [
" Tobias de Bruijn <[email protected] >" ]
5
5
edition = " 2018"
6
6
You can’t perform that action at this time.
0 commit comments