Skip to content

Commit 70f35b1

Browse files
committed
bindings.java : update destination path for native libraries
1 parent 8b1661a commit 70f35b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bindings/java/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ sourceSets {
2727
tasks.register('copyLibwhisperDynlib', Copy) {
2828
from '../../build/src'
2929
include 'libwhisper.dylib'
30-
into 'build/generated/resources/main/darwin'
30+
into 'build/generated/resources/main'
3131
}
3232

3333
tasks.register('copyLibwhisperSo', Copy) {
3434
from '../../build/src'
3535
include 'libwhisper.so'
36-
into 'build/generated/resources/main/linux-x86-64'
36+
into 'build/generated/resources/main'
3737
}
3838

3939
tasks.register('copyWhisperDll', Copy) {
4040
from '../../build/Release'
4141
include 'whisper.dll'
42-
into 'build/generated/resources/main/windows-x86-64'
42+
into 'build/generated/resources/main'
4343
}
4444

4545
tasks.register('copyLibs') {

0 commit comments

Comments
 (0)