monado/settings.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
636 B
Groovy
Raw Normal View History

// Copyright 2020-2022, Collabora, Ltd.
2020-10-13 20:10:38 +00:00
// 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()
}
}
2020-10-13 20:10:38 +00:00
rootProject.name = 'monado'
include ':src:xrt:auxiliary:android'
2020-10-29 13:40:43 +00:00
include ':src:xrt:ipc:android'
include ':src:xrt:targets:android_common'
include ':src:xrt:targets:openxr_android'