Skip to content

Commit

Permalink
fix: try to fix gradle error
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeypospelov committed Mar 14, 2024
1 parent 15bdd1f commit f270820
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion usvm-python/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ if (cpythonActivatedFlag) {
from(fileTree(cpythonBuildPath).exclude("**/__pycache__/**"))
}
into("jar") {
from(File(project.buildDir, "libs/usvm-python.jar"))
from(tasks.jar)
}
}
}
Expand All @@ -189,4 +189,9 @@ if (cpythonActivatedFlag) {
from(dependencies)
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

tasks.distTar.get().dependsOn(":usvm-python:cpythonadapter:CPythonBuildDebug")
tasks.distZip.get().dependsOn(":usvm-python:cpythonadapter:CPythonBuildDebug")
tasks.distTar.get().dependsOn(":usvm-python:cpythonadapter:linkDebug")
tasks.distZip.get().dependsOn(":usvm-python:cpythonadapter:linkDebug")
}

0 comments on commit f270820

Please sign in to comment.