File tree Expand file tree Collapse file tree 7 files changed +18
-0
lines changed Expand file tree Collapse file tree 7 files changed +18
-0
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ BASEDIR=$( dirname " $0 " )
4
+ cd $BASEDIR /../.. || exit
5
+
6
+ mkdir ./bin/freetype
7
+
8
+ [ -e " /tmp/imgui/libsNative/windows32/imgui-java.dll" ] && cp /tmp/imgui/libsNative/windows32/imgui-java.dll ./bin/freetype
9
+ [ -e " /tmp/imgui/libsNative/windows64/imgui-java64.dll" ] && cp /tmp/imgui/libsNative/windows64/imgui-java64.dll ./bin/freetype
10
+ [ -e " /tmp/imgui/libsNative/linux32/libimgui-java.so" ] && cp /tmp/imgui/libsNative/linux32/libimgui-java.so ./bin/freetype
11
+ [ -e " /tmp/imgui/libsNative/linux64/libimgui-java64.so" ] && cp /tmp/imgui/libsNative/linux64/libimgui-java64.so ./bin/freetype
12
+ [ -e " /tmp/imgui/libsNative/macosx64/libimgui-java64.dylib" ] && cp /tmp/imgui/libsNative/macosx64/libimgui-java64.dylib ./bin/freetype
File renamed without changes.
Original file line number Diff line number Diff line change @@ -40,6 +40,12 @@ if (System.getProperty('deployWin32')) {
40
40
libName = ' libimgui-java64.dylib'
41
41
}
42
42
43
+ if (System . getProperty(' freetype' )) {
44
+ packageName + = ' ft'
45
+ packageDesc + = ' with Freetype support'
46
+ libName = ' freetype/' + libName
47
+ }
48
+
43
49
jar {
44
50
from(' ../bin' ) {
45
51
include " $libName " // it's ok
You can’t perform that action at this time.
0 commit comments