File tree Expand file tree Collapse file tree 4 files changed +32
-3
lines changed Expand file tree Collapse file tree 4 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 1
1
* .o
2
2
* .a
3
+ * .lo
4
+ * .la
3
5
4
6
# Visual Studio temp/user files
5
7
* .user
@@ -13,4 +15,29 @@ Release
13
15
Debug
14
16
MinSizeRel
15
17
RelWithDebInfo
16
- ipch
18
+ ipch
19
+
20
+ # files generated by autotools
21
+ /aclocal.m4
22
+ /autom4te.cache
23
+ /config.guess
24
+ /config.h
25
+ /config.h.in
26
+ /config.status
27
+ /config.sub
28
+ /configure
29
+ /depcomp
30
+ /install-sh
31
+ /libtool
32
+ /ltmain.sh
33
+ /m4
34
+ /missing
35
+ /stamp-h *
36
+ /test-driver
37
+ /UnitTest++ /TestUnitTest++
38
+ Makefile
39
+ Makefile.in
40
+ .deps
41
+ .libs
42
+ * .log
43
+ * .trs
Original file line number Diff line number Diff line change
1
+ ACLOCAL_AMFLAGS = -I m4
1
2
EXTRA_DIST = docs
2
3
SUBDIRS = UnitTest++
Original file line number Diff line number Diff line change 1
1
lib_LTLIBRARIES = libUnitTest++.la
2
2
pkgincludedir = $(includedir ) /UnitTest++
3
- nobase_pkginclude_HEADERS = UnitTest++.h Config.h Test.h TestDetails.h TestList.h TestSuite.h TestResults.h TestMacros.h CheckMacros.h TestRunner.h TimeConstraint.h ExecuteTest.h AssertException.h MemoryOutStream.h CurrentTest.h Posix/SignalTranslator.h Checks.h TimeHelpers.h Posix/TimeHelpers.h
3
+ nobase_pkginclude_HEADERS = UnitTest++.h UnitTestPP.h Config.h HelperMacros.h Test.h TestDetails.h TestList.h TestSuite.h TestResults.h TestMacros.h CheckMacros.h TestRunner.h TimeConstraint.h ExecuteTest.h AssertException.h MemoryOutStream.h CurrentTest.h Posix/SignalTranslator.h Checks.h TimeHelpers.h Posix/TimeHelpers.h ExceptionMacros.h ReportAssert.h ReportAssertImpl.h CompositeTestReporter .h
4
4
libUnitTest___la_SOURCES = AssertException.cpp Test.cpp Checks.cpp TestRunner.cpp TestResults.cpp TestReporter.cpp TestReporterStdout.cpp ReportAssert.cpp TestList.cpp TimeConstraint.cpp TestDetails.cpp MemoryOutStream.cpp DeferredTestReporter.cpp DeferredTestResult.cpp XmlTestReporter.cpp CurrentTest.cpp Posix/SignalTranslator.cpp Posix/TimeHelpers.cpp CompositeTestReporter.cpp
5
5
libUnitTest___la_LDFLAGS = -version-number @LIBUNITTEST_SO_VERSION@
6
6
check_PROGRAMS = TestUnitTest++
Original file line number Diff line number Diff line change 4
4
AC_PREREQ ( [ 2.69] )
5
5
AC_INIT ( [ UnitTest++] , [ 1.4] , [ victor.lavaud@gmail.com] )
6
6
AC_CONFIG_SRCDIR ( [ UnitTest++/TestDetails.cpp] )
7
+ AC_CONFIG_MACRO_DIR ( [ m4] )
7
8
AC_CONFIG_HEADERS ( [ config.h] )
8
9
9
- AM_INIT_AUTOMAKE ( )
10
+ AM_INIT_AUTOMAKE ( [ foreign ] )
10
11
LT_INIT()
11
12
12
13
AC_SUBST ( [ LIBUNITTEST_SO_VERSION] , [ 1:4:0] )
You can’t perform that action at this time.
0 commit comments