mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:46:41 +02:00
Allow per-machine customization of which android projects are loaded
This commit is contained in:
parent
b1a120cdfa
commit
0ddb4ecd7c
1 changed files with 16 additions and 8 deletions
|
@ -12,18 +12,26 @@ project(':qt').projectDir = new File(settingsDir, 'libraries/qt')
|
||||||
// Applications
|
// Applications
|
||||||
//
|
//
|
||||||
|
|
||||||
include ':interface'
|
if (!getSettings().hasProperty("SUPPRESS_INTERFACE")) {
|
||||||
project(':interface').projectDir = new File(settingsDir, 'apps/interface')
|
include ':interface'
|
||||||
|
project(':interface').projectDir = new File(settingsDir, 'apps/interface')
|
||||||
|
}
|
||||||
|
|
||||||
include ':questInterface'
|
if (!getSettings().hasProperty("SUPPRESS_QUEST_INTERFACE")) {
|
||||||
project(':questInterface').projectDir = new File(settingsDir, 'apps/questInterface')
|
include ':questInterface'
|
||||||
|
project(':questInterface').projectDir = new File(settingsDir, 'apps/questInterface')
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Test projects
|
// Test projects
|
||||||
//
|
//
|
||||||
|
|
||||||
include ':framePlayer'
|
if (!getSettings().hasProperty("SUPPRESS_FRAME_PLAYER")) {
|
||||||
project(':framePlayer').projectDir = new File(settingsDir, 'apps/framePlayer')
|
include ':framePlayer'
|
||||||
|
project(':framePlayer').projectDir = new File(settingsDir, 'apps/framePlayer')
|
||||||
|
}
|
||||||
|
|
||||||
include ':questFramePlayer'
|
if (!getSettings().hasProperty("SUPPRESS_QUEST_FRAME_PLAYER")) {
|
||||||
project(':questFramePlayer').projectDir = new File(settingsDir, 'apps/questFramePlayer')
|
include ':questFramePlayer'
|
||||||
|
project(':questFramePlayer').projectDir = new File(settingsDir, 'apps/questFramePlayer')
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue