~khurshid-alam/indicator-sound/lp-1714517

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Pete Woods
  • Date: 2013-08-16 03:13:41 UTC
  • mto: This revision was merged to the branch mainline in revision 367.
  • Revision ID: pete.woods@canonical.com-20130816031341-796d95t01jzc0aue
Build using cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
pkglibexec_PROGRAMS = indicator-sound-service
2
 
 
3
 
indicator_sound_service_SOURCES = \
4
 
        service.vala \
5
 
        main.vala \
6
 
        volume-control.vala \
7
 
        media-player.vala \
8
 
        media-player-list.vala \
9
 
        mpris2-interfaces.vala \
10
 
        mpris2-watcher.vala \
11
 
        freedesktop-interfaces.vala \
12
 
        sound-menu.vala
13
 
 
14
 
indicator_sound_service_VALAFLAGS = \
15
 
  --ccode \
16
 
  --vapidir=$(top_srcdir)/vapi/ \
17
 
  --vapidir=./ \
18
 
  --thread \
19
 
  --pkg config \
20
 
  --pkg gio-2.0 \
21
 
  --pkg gio-unix-2.0 \
22
 
  --pkg libxml-2.0 \
23
 
  --pkg libpulse \
24
 
  --pkg libpulse-mainloop-glib \
25
 
  --target-glib=2.36
26
 
 
27
 
# -w to disable warnings for vala-generated code
28
 
indicator_sound_service_CFLAGS = $(PULSEAUDIO_CFLAGS) \
29
 
        $(SOUNDSERVICE_CFLAGS) \
30
 
        $(GCONF_CFLAGS) \
31
 
        $(COVERAGE_CFLAGS) \
32
 
        -DLIBEXECDIR=\"$(libexecdir)\" \
33
 
        -w \
34
 
        -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\"
35
 
 
36
 
indicator_sound_service_LDADD = $(PULSEAUDIO_LIBS) $(SOUNDSERVICE_LIBS) $(GCONF_LIBS)
37
 
indicator_sound_service_LDFLAGS = $(COVERAGE_LDFLAGS)