-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
46 lines (35 loc) · 1.41 KB
/
Copy pathsettings.gradle
File metadata and controls
46 lines (35 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2020-2022, Collabora, Ltd.
// SPDX-License-Identifier: BSL-1.0
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
// This triggers an error if any individual project tries to add a repo not listed here.
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
rootProject.name = 'monado'
// Typically required by all Monado-based runtimes on AOSP platforms
include ':src:xrt:auxiliary'
project(':src:xrt:auxiliary').projectDir = new File(rootDir, 'src/xrt/auxiliary/android')
// Only used by Google Cardboard support in the installable Monado
include ':src:xrt:auxiliary:cardboard'
project(':src:xrt:auxiliary:cardboard').projectDir = new File(rootDir, 'src/xrt/auxiliary/android_cardboard')
// Required for out-of-process builds
include ':src:xrt:ipc'
project(':src:xrt:ipc').projectDir = new File(rootDir, 'src/xrt/ipc/android')
// Typically required by all Monado-based runtimes on AOSP platforms
// Use dependency injection to customize
include ':src:xrt:targets:android_common'
// End-level (leaf) target - builds on android_common with dependency injection
// to make an installable APK providing a runtime with a Cardboard-like experience
// by default.
include ':src:xrt:targets:openxr_android'