~ricmm/+junk/unity-lens_music-sc

« back to all changes in this revision

Viewing changes to tests/unit/Makefile.am

  • Committer: Ricardo Mendoza
  • Date: 2012-09-05 14:20:15 UTC
  • Revision ID: ricardo.mendoza@canonical.com-20120905142015-prem6hiyfshwgm8q
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
check_PROGRAMS = test-rhythmbox-parser
 
2
 
 
3
TESTS = $(check_PROGRAMS)
 
4
 
 
5
AM_CPPFLAGS = \
 
6
  -w \
 
7
  $(LENS_DAEMON_CFLAGS) \
 
8
  -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
 
9
  -I$(top_srcdir)/src \
 
10
  $(NULL)
 
11
 
 
12
AM_VALAFLAGS = \
 
13
  -C                    \
 
14
  --pkg dee-1.0 \
 
15
  --pkg gee-1.0 \
 
16
  --pkg gio-2.0 \
 
17
  --pkg gio-unix-2.0 \
 
18
  --pkg glib-2.0 \
 
19
  --vapidir $(top_srcdir)/src \
 
20
  --pkg tdb \
 
21
  --pkg unity \
 
22
  $(srcdir)/assertions.vapi \
 
23
  $(NULL)
 
24
 
 
25
test_libs = \
 
26
  $(LENS_DAEMON_LIBS) \
 
27
  $(NULL)
 
28
 
 
29
test_rhythmbox_parser_LDADD = $(test_libs)
 
30
 
 
31
test_rhythmbox_parser_SOURCES = \
 
32
  test-rhythmbox-parser.vala \
 
33
  $(top_srcdir)/src/album.vala \
 
34
  $(top_srcdir)/src/categories.vala \
 
35
  $(top_srcdir)/src/config.vala \
 
36
  $(top_srcdir)/src/filter-parser.vala \
 
37
  $(top_srcdir)/src/filter-parser-decade.vala \
 
38
  $(top_srcdir)/src/filter-parser-genre.vala \
 
39
  $(top_srcdir)/src/genre.vala \
 
40
  $(top_srcdir)/src/rhythmbox-collection.vala \
 
41
  $(top_srcdir)/src/track.vala \
 
42
  $(NULL)
 
43
 
 
44
EXTRA_DIST = assertions.vapi
 
45
CLEANFILES = *.stamp
 
46