mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-25 11:27:53 +02:00
.gitlab-ci
.reuse
LICENSES
docs
reference
gio
glib
gmodule
gobject
images
xml
gtkdocentities.ent.in
meson.build
boxed.md
concepts.md
enum-types.md
floating-refs.md
glib-genmarshal.xml
glib-mkenums.xml
gobject-docs.xml
gobject-overrides.txt
gobject-query.xml
gobject-sections.txt
gobject.toml.in
gvalue.md
meson.build
signals.md
tut_tools.xml
tutorial.md
types.md
urlmap.js
value-collection.md
version.xml.in
.gitignore
AUTHORS
COPYING
NEWS
meson.build
CODEOWNERS
backports.md
issue-and-merge-request-management.md
macros.md
meson-version.md
rationales.md
releasing.md
roadmap.md
supported-platforms.md
testing.md
toolchain-requirements.md
win32-build.md
fuzzing
gio
glib
gmodule
gobject
gthread
m4macros
po
subprojects
tests
tools
.clang-format
.dir-locals.el
.editorconfig
.gitignore
.gitlab-ci.yml
.gitmodules
.lcovrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
INSTALL.md
NEWS
README.md
SECURITY.md
glib.doap
meson.build
meson_options.txt
15 lines
511 B
Meson
15 lines
511 B
Meson
ent_conf = configuration_data()
|
|
ent_conf.set('PACKAGE', 'glib')
|
|
ent_conf.set('PACKAGE_BUGREPORT', 'https://gitlab.gnome.org/GNOME/glib/issues/new')
|
|
ent_conf.set('PACKAGE_NAME', 'glib')
|
|
ent_conf.set('PACKAGE_STRING', 'glib')
|
|
ent_conf.set('PACKAGE_TARNAME', 'glib')
|
|
ent_conf.set('PACKAGE_URL', 'FIXME')
|
|
ent_conf.set('PACKAGE_VERSION', glib_version)
|
|
ent_conf.set('PACKAGE_API_VERSION', glib_api_version)
|
|
configure_file(
|
|
input: 'gtkdocentities.ent.in',
|
|
output: 'gtkdocentities.ent',
|
|
configuration: ent_conf
|
|
)
|