forked from AuroraMiddleware/gtk
7a608bda27
We currently list everything as a dependencies, regardless of whether it actually is; this is a source of confusion for users that read the GTK documentation. Gi-docgen has a new "related" key in the project configuration which allows us to list libraries that are merely related to the namespace we are documenting; the "dependencies" key is used to document the actual namespace dependencies, now.
39 lines
967 B
TOML
39 lines
967 B
TOML
[library]
|
|
version = "@version@"
|
|
browse_url = "https://gitlab.gnome.org/GNOME/gtk/"
|
|
repository_url = "https://gitlab.gnome.org/GNOME/gtk.git"
|
|
website_url = "https://www.gtk.org"
|
|
docs_url = "https://docs.gtk.org/gsk4/"
|
|
authors = "GTK Development Team"
|
|
logo_url = "gtk-logo.svg"
|
|
license = "LGPL-2.1-or-later"
|
|
description = "The GTK toolkit"
|
|
devhelp = true
|
|
search_index = true
|
|
|
|
dependencies = ["Graphene-1.0", "Gdk-4.0"]
|
|
|
|
[dependencies."Graphene-1.0"]
|
|
name = "Graphene"
|
|
description = "A thin layer of mathematical types for 3D libraries"
|
|
docs_url = "https://ebassi.github.io/graphene/docs/"
|
|
|
|
[dependencies."Gdk-4.0"]
|
|
name = "GDK"
|
|
description = "The GTK windowing system abstraction"
|
|
docs_url = "https://docs.gtk.org/gdk4/"
|
|
|
|
[theme]
|
|
name = "basic"
|
|
show_index_summary = true
|
|
show_class_hierarchy = true
|
|
|
|
[source-location]
|
|
base_url = "https://gitlab.gnome.org/GNOME/gtk/-/blob/main/"
|
|
|
|
[extra]
|
|
content_images = [
|
|
"gtk-logo.svg",
|
|
]
|
|
urlmap_file = "urlmap.js"
|