2022-01-25 20:44:49 +00:00
|
|
|
// Copyright 2020-2022, Collabora, Ltd.
|
2020-10-13 20:10:38 +00:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
|
2022-01-25 20:44:49 +00:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-13 20:10:38 +00:00
|
|
|
rootProject.name = 'monado'
|
|
|
|
|
2024-06-07 18:47:30 +00:00
|
|
|
include ':src:xrt:auxiliary'
|
|
|
|
project(':src:xrt:auxiliary').projectDir = new File(rootDir, 'src/xrt/auxiliary/android')
|
|
|
|
|
|
|
|
include ':src:xrt:ipc'
|
|
|
|
project(':src:xrt:ipc').projectDir = new File(rootDir, 'src/xrt/ipc/android')
|
|
|
|
|
2020-11-13 20:30:20 +00:00
|
|
|
include ':src:xrt:targets:android_common'
|
2020-10-13 20:10:17 +00:00
|
|
|
include ':src:xrt:targets:openxr_android'
|