2019-03-08 12:20:35 +03:00
|
|
|
rootProject.name = 'GravitLauncher'
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
include 'Launcher'
|
2019-05-26 09:37:25 +03:00
|
|
|
include 'LauncherCore'
|
2019-05-03 16:35:14 +03:00
|
|
|
include 'LauncherAPI'
|
2019-05-03 16:27:48 +03:00
|
|
|
include 'LauncherAuthlib'
|
2018-09-25 16:21:08 +03:00
|
|
|
include 'ServerWrapper'
|
2018-09-17 10:07:32 +03:00
|
|
|
include 'LaunchServer'
|
2018-09-22 16:21:07 +03:00
|
|
|
include 'modules'
|
|
|
|
file('modules').eachDir { sub ->
|
2019-08-14 09:49:19 +03:00
|
|
|
if (sub.name.endsWith('_module') || sub.name.endsWith('_swmodule') || sub.name.endsWith('_lmodule')) include 'modules:' + sub.name
|
2019-03-08 15:43:26 +03:00
|
|
|
}
|