mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-02-05 11:26:37 -08:00
21 lines
315 B
Groovy
21 lines
315 B
Groovy
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs "../../$gameSource"
|
|
}
|
|
}
|
|
test {
|
|
java {
|
|
srcDirs "../../$gameTest"
|
|
}
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = gameMain
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(project(":build_00_utilities").sourceSets.test.output)
|
|
}
|