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

15 lines
333 B
Groovy
Raw Normal View History

rootProject.name = 'OwnLang'
2023-08-26 15:59:36 +03:00
include 'ownlang-core'
include 'ownlang-parser'
include 'ownlang-desktop'
include 'ownlang-utils'
include 'docs'
2023-08-26 15:59:36 +03:00
2024-03-03 15:17:58 +02:00
final def modules = ['main', 'canvasfx', 'jdbc', 'server', 'socket']
2023-11-09 19:54:26 +02:00
for (final def module in modules) {
include "modules:$module"
findProject(":modules:$module")?.name = module
}