mirror of
https://github.com/overte-org/overte.git
synced 2025-04-10 10:02:39 +02:00
26 lines
558 B
Groovy
26 lines
558 B
Groovy
//
|
|
// Libraries
|
|
//
|
|
|
|
include ':oculus'
|
|
project(':oculus').projectDir = new File(settingsDir, 'libraries/oculus')
|
|
|
|
include ':qt'
|
|
project(':qt').projectDir = new File(settingsDir, 'libraries/qt')
|
|
|
|
//
|
|
// Applications
|
|
//
|
|
|
|
include ':interface'
|
|
project(':interface').projectDir = new File(settingsDir, 'apps/interface')
|
|
|
|
//
|
|
// Test projects
|
|
//
|
|
|
|
include ':framePlayer'
|
|
project(':framePlayer').projectDir = new File(settingsDir, 'apps/framePlayer')
|
|
|
|
include ':questFramePlayer'
|
|
project(':questFramePlayer').projectDir = new File(settingsDir, 'apps/questFramePlayer')
|