Skip to content

Commit

Permalink
fixed missing preproc output
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefterv committed Dec 14, 2024
1 parent 89e991d commit 91101c3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

9 changes: 8 additions & 1 deletion java/preprocessor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ repositories{
sourceSets{
main{
java{
srcDirs("src/main/java", "../src/", "../generated")
srcDirs("src/main/java", "../src/", "../generated/")
include("processing/mode/java/preproc/**/*", "processing/app/**/*")
}
}

}

dependencies{
Expand Down Expand Up @@ -63,4 +64,10 @@ mavenPublishing{
}
tasks.withType<Jar> {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.compileJava{
dependsOn("ant-preproc")
}
ant.importBuild("../build.xml"){ antTaskName ->
"ant-$antTaskName"
}

0 comments on commit 91101c3

Please sign in to comment.