-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
25 lines (18 loc) · 739 Bytes
/
Makefile.am
File metadata and controls
25 lines (18 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = \
CHANGES \
CONTRIBUTORS
AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/include
# Build rules for libraries.
lib_LTLIBRARIES = lib/libcppunitlite.la
lib_libcppunitlite_la_SOURCES = src/Failure.cpp \
src/SimpleString.cpp \
src/Test.cpp \
src/TestRegistry.cpp \
src/TestResult.cpp
pkginclude_HEADERS = include/Failure.h \
include/SimpleString.h \
include/Test.h \
include/TestHarness.h \
include/TestRegistry.h \
include/TestResult.h