[go: up one dir, main page]

Menu

[f35cf5]: / media / Makefile.am  Maximize  Restore  History

Download this file

44 lines (35 with data), 805 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Library
lib_LTLIBRARIES = libvamos-media.la
libvamos_media_la_SOURCES = \
Ac3d.cc \
Sample.cc \
Texture_Image.cc \
Two_D.cc \
XML_Parser.cc
pkginclude_HEADERS = \
Ac3d.h \
Sample.h \
Texture_Image.h \
Two_D.h \
XML_Parser.h
pkgincludedir = $(includedir)/@PACKAGE@/media
EXTRA_DIST = $(pkginclude_HEADERS)
AM_CXXFLAGS = -fPIC -Wall -pedantic
# Unit Tests
if DO_UNIT_TESTS
UNIT_TESTS = test_XML_Parser
else
UNIT_TESTS =
endif
noinst_PROGRAMS = $(UNIT_TESTS)
EXTRA_PROGRAMS = $(UNIT_TESTS)
test_XML_Parser_SOURCES = test_XML_Parser.cc
test_XML_Parser_CXXFLAGS = -DBOOST_TEST_DYN_LINK
test_XML_Parser_LDADD = XML_Parser.lo -lboost_unit_test_framework
if DO_UNIT_TESTS
check-local: $(UNIT_TESTS)
for test in $(UNIT_TESTS); do \
echo $$test; \
$(top_srcdir)/media/$$test; \
done
endif