diff --git a/build.gradle b/build.gradle index 944d683..d58f138 100644 --- a/build.gradle +++ b/build.gradle @@ -59,4 +59,10 @@ subprojects { dependencies { implementation "org.scala-lang:scala-library:${scalaVersion}" } + + // Ensure nativeCompile tasks declare their output directories for proper + // Gradle up-to-date checks and cross-project dependency resolution + tasks.matching { it.name == 'nativeCompile' }.configureEach { t -> + t.outputs.dir("${project.buildDir}/native/nativeCompile") + } } \ No newline at end of file