Launcher/settings.gradle
Zaxar163 f8853ff353 Modules as gitproject (#6)
* Move modules.

* Small fix.
2018-09-22 20:21:07 +07:00

9 lines
No EOL
215 B
Groovy

rootProject.name = 'Launcher'
include 'Launcher'
include 'libLauncher'
include 'LaunchServer'
include 'modules'
file('modules').eachDir { sub ->
if (sub.name.endsWith('_module')) include 'modules:' + sub.name
}