From 8f2d87256fd738ecbc6903d1a426a1a1dbc1bda5 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sun, 16 Nov 2025 20:53:58 -0500 Subject: [PATCH] Fix artifact layout --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b8c707e..97be2f1 100644 --- a/build.gradle +++ b/build.gradle @@ -65,7 +65,8 @@ println("Building for $nativeName") tasks.register('copyNativeLibrary', Sync) { from "${projectDir}/cmake_build/bin/" from "${projectDir}/cmake_build/lib/" - into "${outputsFolder}/${nativeName}/" + // Hardcode to shared because we're not building static ever + into "${outputsFolder}/${nativeName}/shared/" include "**/*.dll", "**/*.so" includeEmptyDirs = false