summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2024-09-25 21:13:01 +0200
committerJoel Klinghed <the_jk@spawned.biz>2024-09-25 21:13:01 +0200
commit574f4a278982dadf87fafb50038c5150b958b219 (patch)
tree2f5f0fe9bf488bc6c6de4c4bf95c7a5c6272af8e
parent28a55fdc69e31490a4086ecae8cc687f40ba0b94 (diff)
samba: Fix output dir for tests
-rw-r--r--libs/samba/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/samba/build.gradle.kts b/libs/samba/build.gradle.kts
index 1953bdf..a86ad39 100644
--- a/libs/samba/build.gradle.kts
+++ b/libs/samba/build.gradle.kts
@@ -44,7 +44,7 @@ dependencies {
}
listOf("Debug", "Release").forEach { buildType ->
- val buildDir = project.layout.buildDirectory.dir("test-cpp/debug/build")
+ val buildDir = project.layout.buildDirectory.dir("test-cpp/$buildType/build")
val configure by tasks.register(
"configureLibsFor${buildType}UnitTest",