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
|
|
|
SUBDIRS = \
|
2014-06-30 21:13:05 +00:00
|
|
|
bp \
|
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
|
|
|
application1 application2 application3 \
|
|
|
|
application4 application5 application6 \
|
2013-11-16 21:09:56 +00:00
|
|
|
application7 application8 application9 \
|
|
|
|
application10
|
1998-12-08 18:04:58 +00:00
|
|
|
|
2011-05-16 11:47:17 +00:00
|
|
|
AM_CPPFLAGS = \
|
2010-10-15 16:37:21 +00:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/gdk \
|
2010-10-16 01:55:17 +00:00
|
|
|
-I$(top_builddir)/gdk \
|
2010-10-15 16:37:21 +00:00
|
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
|
|
$(GTK_DEBUG_FLAGS) \
|
|
|
|
$(GTK_DEP_CFLAGS)
|
1998-12-08 18:04:58 +00:00
|
|
|
|
2010-10-15 16:37:21 +00:00
|
|
|
LDADD = \
|
2011-02-10 19:41:02 +00:00
|
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
2011-11-14 12:08:47 +00:00
|
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
2010-10-15 16:37:21 +00:00
|
|
|
$(GTK_DEP_LIBS)
|
1998-12-08 18:04:58 +00:00
|
|
|
|
2011-01-19 04:57:17 +00:00
|
|
|
noinst_PROGRAMS = \
|
|
|
|
hello-world \
|
|
|
|
window-default \
|
2012-07-23 01:01:15 +00:00
|
|
|
plugman \
|
|
|
|
sunny \
|
2012-09-13 17:10:24 +00:00
|
|
|
action-namespace \
|
2011-01-19 04:57:17 +00:00
|
|
|
grid-packing \
|
2011-01-20 06:30:34 +00:00
|
|
|
drawing \
|
2013-10-09 15:47:30 +00:00
|
|
|
builder \
|
|
|
|
search-bar
|
2011-01-20 06:30:34 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = builder.ui
|
2013-01-24 22:35:30 +00:00
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|