File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,23 +6,27 @@ plugins {
6
6
7
7
def packageName = ' imgui-java-natives-linux'
8
8
def packageDesc = ' Native binaries for imgui-java binding for Linux'
9
+ def moduleName = ' imgui.natives.linux'
9
10
def fromDir = ' ../bin'
10
11
def libName = ' libimgui-java64.so'
11
12
12
13
switch (findProperty(' deployType' )) {
13
14
case ' win' :
14
15
packageName = ' imgui-java-natives-windows'
15
16
packageDesc = ' Native binaries for imgui-java binding for Windows'
17
+ moduleName = ' imgui.natives.windows'
16
18
libName = ' imgui-java64.dll'
17
19
break
18
20
case ' linux' :
19
21
packageName = ' imgui-java-natives-linux'
20
22
packageDesc = ' Native binaries for imgui-java binding for Linux'
23
+ moduleName = ' imgui.natives.linux'
21
24
libName = ' libimgui-java64.so'
22
25
break
23
26
case ' mac' :
24
27
packageName = ' imgui-java-natives-macos'
25
28
packageDesc = ' Native binaries for imgui-java binding for MacOS'
29
+ moduleName = ' imgui.natives.macos'
26
30
libName = ' libimgui-java64.dylib'
27
31
break
28
32
}
39
43
into ' io/imgui/java/native-bin/'
40
44
}
41
45
manifest {
42
- attributes ' Automatic-Module-Name' : ' imgui.natives '
46
+ attributes ' Automatic-Module-Name' : moduleName
43
47
}
44
48
}
45
49
You can’t perform that action at this time.
0 commit comments