Own-Programming-Language-Tu.../settings.gradle

15 lines
333 B
Groovy

rootProject.name = 'OwnLang'
include 'ownlang-core'
include 'ownlang-parser'
include 'ownlang-desktop'
include 'ownlang-utils'
include 'docs'
final def modules = ['main', 'canvasfx', 'jdbc', 'server', 'socket']
for (final def module in modules) {
include "modules:$module"
findProject(":modules:$module")?.name = module
}