Skip to content

Commit 2dc275f

Browse files
authored
Fix artifact layout (#14)
1 parent 2adb187 commit 2dc275f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ println("Building for $nativeName")
6565
tasks.register('copyNativeLibrary', Sync) {
6666
from "${projectDir}/cmake_build/bin/"
6767
from "${projectDir}/cmake_build/lib/"
68-
into "${outputsFolder}/${nativeName}/"
68+
// Hardcode to shared because we're not building static ever
69+
into "${outputsFolder}/${nativeName}/shared/"
6970
include "**/*.dll", "**/*.so"
7071
includeEmptyDirs = false
7172

0 commit comments

Comments
 (0)