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 44
|
Installing the CppTest library
Table of contents
=================
- Using GNU tools
- Simple install procedure
- Configuration options
- Under Microsoft Windows
Using GNU tools
===============
For more detailed information about the installation process, see INSTALL.
Simple install procedure
------------------------
> gzip -cd cpptest-@VERSION@.tar.gz | tar xvf - # unpack the sources
> cd cpptest-@VERSION@ # change to the its directory
> ./configure # run the 'configure' script
> make # build 'cpptest'
[ Become root if necessary ]
> make install
Configuration options
---------------------
The 'configure' script can be given a number of options to enable
and disable various features. For a complete list, type:
./configure --help
Under Microsoft Windows
=======================
Windows specific files are found under the 'win' directory.
If you are using Microsoft Visual Studio .NET, there is a project/solution
created under win\VisualStudio.Net. This solution creates both the library
and the test program.
|