Skip to content

Instantly share code, notes, and snippets.

@AndrewReitz
Last active May 3, 2019 01:05
Show Gist options
  • Save AndrewReitz/40de5cbf8ef5bbb516ed0b7e910e1cc1 to your computer and use it in GitHub Desktop.
Save AndrewReitz/40de5cbf8ef5bbb516ed0b7e910e1cc1 to your computer and use it in GitHub Desktop.
My settings.gradle.kts for my kotlin raytracing project
include(
"raytracer-core",
"raytracer-math",
"raytracer-console",
"raytracer-parsing"
)
rootProject.name = "kotlin-raytracer"
rootProject.children.forEach {
it.buildFileName = "${name.replace("raytracer-", "")}.gradle.kts"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment