mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 14:42:03 +02:00
37 lines
968 B
Groovy
37 lines
968 B
Groovy
//
|
|
// Libraries
|
|
//
|
|
|
|
//include ':oculus'
|
|
//project(':oculus').projectDir = new File(settingsDir, 'libraries/oculus')
|
|
|
|
include ':qt'
|
|
project(':qt').projectDir = new File(settingsDir, 'libraries/qt')
|
|
|
|
//
|
|
// Applications
|
|
//
|
|
|
|
if (!getSettings().hasProperty("SUPPRESS_INTERFACE")) {
|
|
include ':interface'
|
|
project(':interface').projectDir = new File(settingsDir, 'apps/interface')
|
|
}
|
|
|
|
if (!getSettings().hasProperty("SUPPRESS_QUEST_INTERFACE")) {
|
|
// include ':questInterface'
|
|
// project(':questInterface').projectDir = new File(settingsDir, 'apps/questInterface')
|
|
}
|
|
|
|
//
|
|
// Test projects
|
|
//
|
|
|
|
if (!getSettings().hasProperty("SUPPRESS_FRAME_PLAYER")) {
|
|
// include ':framePlayer'
|
|
// project(':framePlayer').projectDir = new File(settingsDir, 'apps/framePlayer')
|
|
}
|
|
|
|
if (!getSettings().hasProperty("SUPPRESS_QUEST_FRAME_PLAYER")) {
|
|
//include ':questFramePlayer'
|
|
// project(':questFramePlayer').projectDir = new File(settingsDir, 'apps/questFramePlayer')
|
|
}
|