2018-12-27 01:38:40 +03:00
|
|
|
include 'desktop', 'core', 'net', 'server', 'ios', 'annotations', 'tools', 'tests'
|
2018-10-24 20:07:51 +03:00
|
|
|
|
2018-12-26 21:22:31 +03:00
|
|
|
def use = { String name, String path ->
|
|
|
|
include(name)
|
|
|
|
project(name).projectDir = new File(settingsDir, path)
|
|
|
|
}
|
|
|
|
|
2018-10-24 20:07:51 +03:00
|
|
|
Properties properties = new Properties()
|
|
|
|
|
|
|
|
if(new File(settingsDir, 'local.properties').exists()){
|
|
|
|
properties.load(new File(settingsDir, 'local.properties').newDataInputStream())
|
|
|
|
|
|
|
|
if(properties.containsKey("sdk.dir")){
|
|
|
|
include 'android'
|
|
|
|
}else{
|
|
|
|
println("No android SDK dir found Not loading Android module.")
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
println("No local.properties found. Not loading Android module.")
|
|
|
|
}
|
2017-12-22 00:46:33 +03:00
|
|
|
|
2018-10-06 18:56:39 +03:00
|
|
|
if(System.properties["release"] == null || System.properties["release"] == "false"){
|
2018-12-20 19:49:32 +03:00
|
|
|
if (new File(settingsDir, '../Arc').exists()) {
|
2018-12-26 21:22:31 +03:00
|
|
|
use(':Arc', '../Arc')
|
|
|
|
use(':Arc:arc-core', '../Arc/arc-core')
|
|
|
|
use(':Arc:extensions', '../Arc/extensions')
|
|
|
|
use(':Arc:extensions:freetype', '../Arc/extensions/freetype')
|
2018-12-27 01:38:40 +03:00
|
|
|
use(':Arc:backends', '../Arc/backends')
|
|
|
|
use(':Arc:backends:backend-lwjgl3', '../Arc/backends/backend-lwjgl3')
|
2017-12-25 04:50:00 +03:00
|
|
|
}
|
2018-09-11 02:33:12 +03:00
|
|
|
if (new File(settingsDir, '../debug').exists()) {
|
2018-12-26 21:22:31 +03:00
|
|
|
use(':debug', '../debug')
|
2018-09-11 02:33:12 +03:00
|
|
|
}
|
2017-12-25 04:50:00 +03:00
|
|
|
}else{
|
|
|
|
println("Not including local repositories.")
|
2017-12-22 05:56:01 +03:00
|
|
|
}
|