Add a new example app
Add a new example to the getting started part of the docs. The focus
of this example is on 'new stuff': GtkApplication, templates, settings,
gmenu, gaction, GtkStack, GtkHeaderBar, GtkSearchBar, GtkRevealer,
GtkListBox, GtkMenuButton, etc.
It is being developed in several steps. Each step is put in a separate
directory below examples/: application1, ..., application8. This is a
little repetitive, but lets us use the code of all examples in the
documentation.
2013-07-20 04:21:48 +00:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/gdk \
|
|
|
|
-I$(top_builddir)/gdk \
|
|
|
|
$(GTK_DEBUG_FLAGS) \
|
|
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
|
|
|
|
LDADD = \
|
|
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
|
|
$(GTK_DEP_LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
noinst_PROGRAMS = exampleapp
|
|
|
|
|
|
|
|
exampleapp_SOURCES = \
|
|
|
|
main.c \
|
|
|
|
exampleapp.c exampleapp.h \
|
|
|
|
exampleappwin.c exampleappwin.h \
|
|
|
|
exampleappprefs.c exampleappprefs.h \
|
|
|
|
resources.c
|
|
|
|
|
|
|
|
BUILT_SOURCES = \
|
|
|
|
resources.c \
|
|
|
|
gschemas.compiled
|
|
|
|
|
|
|
|
resources.c: exampleapp.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/exampleapp.gresource.xml)
|
|
|
|
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $(srcdir)/exampleapp.gresource.xml \
|
|
|
|
--target=$@ --sourcedir=$(srcdir) --generate-source
|
|
|
|
|
|
|
|
gsettings_SCHEMAS = \
|
|
|
|
org.gtk.exampleapp.gschema.xml
|
|
|
|
|
|
|
|
@GSETTINGS_RULES@
|
|
|
|
|
|
|
|
gschemas.compiled: org.gtk.exampleapp.gschema.xml
|
|
|
|
$(GLIB_COMPILE_SCHEMAS) .
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
window.ui \
|
|
|
|
app-menu.ui \
|
|
|
|
prefs.ui \
|
|
|
|
gears-menu.ui \
|
|
|
|
exampleapp.gresource.xml \
|
|
|
|
org.gtk.exampleapp.gschema.xml
|
|
|
|
|
|
|
|
CLEANFILES = \
|
|
|
|
gschemas.compiled
|
2013-08-07 10:13:09 +00:00
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|