mirror of
https://gitlab.gnome.org/GNOME/glade.git
synced 2025-10-05 00:08:27 -04:00
src/glade-window.c: Use GtkBuilder and GResources to build GladeWindow contents Implemented menu with GtkActions Push tooltip for rencet manager and project actions src/main.c: Register glade GResources src/glade-resources.gresources.xml: Glade Gresource file src/glade.glade: Glade UI GladeWindow, about and preferences dialog src/glade-callbacks.h: callbacks declarations src/Makefile.am: added glade-resource.c to source list configure.ac: bumped version to 3.13 added glib-compile-resources path program glade-rules.mk: added common rules for GResources files
18 lines
691 B
Makefile
18 lines
691 B
Makefile
# In this file you will find generic and usefull rules to
|
|
|
|
# GResource rules:
|
|
# These rules will create source and header files for any file ending with .gresource.xml
|
|
# You will have to manually load the resourse unless the file name ends with
|
|
# .static.gresource.xml in which case it will be loaded automatically
|
|
|
|
%.h: %.gresource.xml
|
|
$(GLIB_COMPILE_RESOURCES) --manual-register --generate $< --target=$@
|
|
%.c: %.gresource.xml
|
|
$(GLIB_COMPILE_RESOURCES) --manual-register --generate $< --target=$@
|
|
|
|
# rule for static resources
|
|
%.h: %.static.gresource.xml
|
|
$(GLIB_COMPILE_RESOURCES) --generate $< --target=$@
|
|
%.c: %.static.gresource.xml
|
|
$(GLIB_COMPILE_RESOURCES) --generate $< --target=$@
|