Skip to content

Commit 02df344

Browse files
Niklas Lundellhartwork
authored andcommitted
- Added a pkg-config file.
- Released version 1.0.4
1 parent b282c4b commit 02df344

6 files changed

Lines changed: 29 additions & 5 deletions

File tree

cpptest/AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
Main author:
22
Niklas Lundell <nilu@users.sourceforge.net>
33

4+
Contributors:
5+
David Morris - pkg-config file.
6+

cpptest/Makefile.am

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ---
22
##
3-
## $Id: Makefile.am,v 1.6 2005/06/15 18:21:09 nilu Exp $
3+
## $Id: Makefile.am,v 1.7 2007/12/12 19:15:32 nilu Exp $
44
##
55
## CppTest - A C++ Unit Testing Framework
66
## Copyright (c) 2003 Niklas Lundell
@@ -36,6 +36,7 @@ EXTRA_DIST = \
3636
BUGS \
3737
config/stamp-h.in \
3838
INSTALL.quick \
39+
libcpptest.pc \
3940
README \
4041
win/config.h \
4142
win/VisualStudio.NET/VisualStudio.NET.sln \
@@ -52,6 +53,7 @@ DISTCLEANFILES = \
5253
config/config.h \
5354
config/stamp-h? \
5455
INSTALL.quick \
56+
libcpptest.pc \
5557
README \
5658
Makefile
5759

cpptest/NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
Release 1.0.4 -- December 12 2008
3+
---------------------------------
4+
Added a pkg-config file. The pkg-config program is used to retrieve
5+
information about installed libraries in the system. It is typically
6+
used to compile and link against one or more libraries.
7+
28
Release 1.0.3 -- June 8 2005
39
----------------------------
410
This is a maintenance release concerning the configuration tools only.

cpptest/configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ---
22
##
3-
## $Id: configure.ac,v 1.7 2005/06/15 18:21:10 nilu Exp $
3+
## $Id: configure.ac,v 1.8 2007/12/12 19:15:32 nilu Exp $
44
##
55
## CppTest - A C++ Unit Testing Framework
66
## Copyright (c) 2003 Niklas Lundell
@@ -28,7 +28,7 @@
2828

2929
AC_PREREQ(2.53)
3030

31-
AC_INIT(CppTest, 1.0.3, nilu@users.sourceforge.net, cpptest)
31+
AC_INIT(CppTest, 1.0.4, nilu@users.sourceforge.net, cpptest)
3232
AC_CONFIG_AUX_DIR(config)
3333
AC_CONFIG_SRCDIR(autogen.sh)
3434

@@ -44,7 +44,7 @@ AM_CONFIG_HEADER(config/config.h)
4444
#
4545
# current:revision:age
4646
#
47-
LT_VERSION=0:3:0
47+
LT_VERSION=0:4:0
4848
AC_SUBST(LT_VERSION, $LT_VERSION)
4949

5050
##### Alternatives
@@ -130,7 +130,7 @@ fi
130130
##### Output
131131

132132
AC_CONFIG_FILES([config/stamp-h], [echo timestamp > config/stamp-h])
133-
AC_CONFIG_FILES([doc/Doxyfile INSTALL.quick README])
133+
AC_CONFIG_FILES([doc/Doxyfile INSTALL.quick libcpptest.pc README])
134134
AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile test/Makefile])
135135
AC_OUTPUT
136136

cpptest/doc/main.dox

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ The CppTest project uses the following web sites:
3434

3535
CppTest has been successfully tested using the following compilers
3636
and platforms:
37+
- GCC 4.2.3 (using Debian Etch)
3738
- GCC 3.2 (using RedHat Linux 8.0/9)
3839
- GCC 3.3.1 (under cygwin)
3940
- Microsoft Visual C++ 6.0/7.0/7.1 (using Windows)

cpptest/libcpptest.pc.in

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
prefix=/usr
2+
exec_prefix=${prefix}
3+
libdir=${exec_prefix}/lib
4+
includedir=${prefix}/include
5+
6+
Name: libcpptest
7+
Description: C++ test suite
8+
Version: @VERSION@
9+
Libs: -L${libdir} -lcpptest
10+
Cflags: -I${includedir}
11+
12+

0 commit comments

Comments
 (0)