We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f155600 commit d808501Copy full SHA for d808501
imgui-binding-natives/build.gradle
@@ -6,6 +6,7 @@ plugins {
6
7
def packageName = 'imgui-java-natives-linux'
8
def packageDesc = 'Native binaries for imgui-java binding for 64bit Linux'
9
+def fromDir = '../bin'
10
def libName = 'libimgui-java64.so'
11
12
if (System.getProperty('deployWin32')) {
@@ -33,11 +34,11 @@ if (System.getProperty('deployWin32')) {
33
34
if (System.getProperty('freetype')) {
35
packageName += '-ft'
36
packageDesc += ' with Freetype support'
- libName = 'freetype/' + libName
37
+ fromDir += '/freetype'
38
}
39
40
jar {
- from('../bin') {
41
+ from(fromDir) {
42
include "$libName" // this is fine
43
into 'io/imgui/java/native-bin/'
44
0 commit comments