We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2adb187 commit 2dc275fCopy full SHA for 2dc275f
build.gradle
@@ -65,7 +65,8 @@ println("Building for $nativeName")
65
tasks.register('copyNativeLibrary', Sync) {
66
from "${projectDir}/cmake_build/bin/"
67
from "${projectDir}/cmake_build/lib/"
68
- into "${outputsFolder}/${nativeName}/"
+ // Hardcode to shared because we're not building static ever
69
+ into "${outputsFolder}/${nativeName}/shared/"
70
include "**/*.dll", "**/*.so"
71
includeEmptyDirs = false
72
0 commit comments