Difference between revisions of "CppUnit"
From CBLFS
Jump to navigationJump to searchm (Adding homepage url) |
|||
Line 7: | Line 7: | ||
---- | ---- | ||
− | {{Package-Introduction|CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests.}} | + | {{Package-Introduction|CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests.|http://cppunit.sourceforge.net/cgi-bin/moin.cgi}} |
== Dependencies == | == Dependencies == |
Revision as of 12:22, 26 February 2008
Download Source: | http://downloads.sourceforge.net/cppunit/cppunit-1.12.1.tar.gz |
---|
Contents
Introduction to CppUnit
CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI-based for supervised tests.
Project Homepage: http://cppunit.sourceforge.net/cgi-bin/moin.cgi
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --disable-dependency-tracking && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \ ./configure --prefix=/usr --disable-dependency-tracking && make
Install the package:
make install && mv -v /usr/bin/cppunit-config{,-32}
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 \ --disable-dependency-tracking && make
Install the package:
make install && mv -v /usr/bin/cppunit-config{,-n32}
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 \ --disable-dependency-tracking && make
Install the package:
make install && mv -v /usr/bin/cppunit-config{,-64} && ln -sfv multiarch_wrapper /usr/bin/cppunit-config
Contents
Installed Programs: | cppunit-config DllPlugInTester |
---|---|
Installed Libraries: | libcppunit.{a,la,so} |
Installed Directories: | /usr/include/cppunit |