mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 07:38:54 +02:00
.gitlab-ci
.reuse
LICENSES
docs
reference
gio
glib
gobject
images
xml
gtkdocentities.ent.in
meson.build
glib-genmarshal.xml
glib-mkenums.xml
gobject-docs.xml
gobject-overrides.txt
gobject-query.xml
gobject-sections.txt
meson.build
tut_gobject.xml
tut_gsignal.xml
tut_gtype.xml
tut_howto.xml
tut_intro.xml
tut_tools.xml
version.xml.in
.gitignore
AUTHORS
COPYING
NEWS
meson.build
CODEOWNERS
backports.md
debugging.txt
macros.txt
meson-version.md
rationales.md
releasing.md
roadmap.md
supported-platforms.md
testing.md
toolchain-requirements.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
HACKING
INSTALL.md
NEWS
README.md
README.win32.md
SECURITY.md
glib.doap
meson.build
meson_options.txt
msvc_recommended_pragmas.h
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
|
|
)
|