diff options
author | raveit65 <[email protected]> | 2018-07-23 19:29:24 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-27 14:47:16 +0200 |
commit | 6d164b4f423ddba1f5433e078bbfc4a8e6f514bf (patch) | |
tree | eb0cbb0a51ef6928813c7243bda26dc206e43377 /data | |
parent | e12f28519946136a91ab09e1f5072c6d6e49f00d (diff) | |
download | eom-6d164b4f423ddba1f5433e078bbfc4a8e6f514bf.tar.bz2 eom-6d164b4f423ddba1f5433e078bbfc4a8e6f514bf.tar.xz |
Initial GResource migration
Embedding UI data files as GResource makes several things easier.
The compiled resources need to be linked directly with the binary
as they won't be available if linked with the embedded libeom.
Starting with eom.css and eom-ui.xml
inspired from:
https://gitlab.gnome.org/GNOME/eog/commit/94004b4
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 10b7dd6..2d81162 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -25,21 +25,17 @@ ui_DATA = \ eom-image-properties-dialog.ui \ eom-multiple-save-as-dialog.ui \ eom-preferences-dialog.ui \ - eom-ui.xml \ eom-toolbar.xml pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = eom.pc -themedir = $(pkgdatadir) -theme_DATA = \ - eom.css - EXTRA_DIST = \ - $(theme_DATA) \ - $(ui_DATA) \ - $(DESKTOP_IN_FILES) \ - $(appdata_in_files) + $(ui_DATA) \ + eom.css \ + eom-ui.xml \ + $(DESKTOP_IN_FILES) \ + $(appdata_in_files) CLEANFILES = \ $(appdata_DATA) |