mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 06:10:15 +00:00
23bc606c79
This test creates a treeview with a few columns and a liststore, and then populates it with a 1000 rows.
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
TEST_PROGS += accessibility-dump
|
|
|
|
check_PROGRAMS = $(TEST_PROGS)
|
|
|
|
accessibility_dump_CFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/gdk \
|
|
-I$(top_srcdir)/gdk \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
accessibility_dump_LDADD = \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
accessibility_dump_SOURCES = \
|
|
accessibility-dump.c
|
|
|
|
TEST_PROGS += tree-performance
|
|
|
|
tree_performance_CFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/gdk \
|
|
-I$(top_srcdir)/gdk \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
tree_performance_LDADD = \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
tree_performance_SOURCES = \
|
|
tree-performance.c
|
|
|
|
EXTRA_DIST += \
|
|
hello-world.ui hello-world.txt \
|
|
mnemonic.ui mnemonic.txt \
|
|
accessible-name.ui accessible-name.txt \
|
|
notebook.ui notebook.txt \
|
|
range.ui range.txt \
|
|
link.ui link.txt \
|
|
text.ui text.txt \
|
|
tree.ui tree.txt \
|
|
buttons.ui buttions.txt \
|
|
colorchooser.ui colorchooser.txt \
|
|
about.ui about.txt \
|
|
appchooser.ui appchooser.txt \
|
|
messagedialog.ui messagedialog.txt \
|
|
expander.ui expander.txt \
|
|
assistant.ui assistant.txt \
|
|
pickers.ui pickers.txt \
|
|
lockbutton.ui lockbutton.txt \
|
|
spinner.ui spinner.txt \
|
|
progress.ui progress.txt \
|
|
infobar.ui infobar.txt \
|
|
calendar.ui calendar.txt
|