summaryrefslogtreecommitdiff
path: root/src/nautilus-enum-types.c.template
AgeCommit message (Collapse)Author
2023-05-26Replace filename with basename in template filesKhem Raj
This avoids emitting absolute paths into generated sourcecode, it improves reproducibility. See [1] [1] https://developer-old.gnome.org/gobject/stable/glib-mkenums.html
2021-01-15Drop use of volatileOndrej Holy
The `fedora rawhide` CI job currently fails because of usage of the `volatile` qualifier. Let's drop the `volatile` qualifier as it doesn't help anyway. It was dropped in GLib as well, see: https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1719 Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/1741
2016-09-01Use templates for glib-mkenumsErnestas Kulik
Currently, enum types are generated by passing command line arguments to glib-mkenums. A better alternative to that is passing a template file, which also declutters build files. https://bugzilla.gnome.org/show_bug.cgi?id=770507