mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-11-11 14:56:10 +03:00
16 lines
600 B
Groovy
16 lines
600 B
Groovy
include 'desktop', 'html', 'core', 'android', 'kryonet', 'server', 'ios', 'annotations', 'packer'
|
|
|
|
if(System.properties["release"] == null || System.properties["release"].equals("false")){
|
|
if (new File(settingsDir, '../uCore').exists()) {
|
|
include ':uCore'
|
|
project(':uCore').projectDir = new File(settingsDir, '../uCore')
|
|
}
|
|
|
|
if (new File(settingsDir, '../GDXGifRecorder').exists()) {
|
|
include ':GDXGifRecorder'
|
|
project(':GDXGifRecorder').projectDir = new File(settingsDir, '../GDXGifRecorder')
|
|
}
|
|
}else{
|
|
println("Not including local repositories.")
|
|
}
|