Skip to content

Commit 40820ce

Browse files
committedJan 5, 2013
Updated instructions to configure this library and added license file.
1 parent 1523f32 commit 40820ce

File tree

2 files changed

+35
-6
lines changed

2 files changed

+35
-6
lines changed
 

‎LICENSE_1_0.txt

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Boost Software License - Version 1.0 - August 17th, 2003
2+
3+
Permission is hereby granted, free of charge, to any person or organization
4+
obtaining a copy of the software and accompanying documentation covered by
5+
this license (the "Software") to use, reproduce, display, distribute,
6+
execute, and transmit the Software, and to prepare derivative works of the
7+
Software, and to permit third-parties to whom the Software is furnished to
8+
do so, all subject to the following:
9+
10+
The copyright notices in the Software and this entire statement, including
11+
the above license grant, this restriction and the following disclaimer,
12+
must be included in all copies of the Software, in whole or in part, and
13+
all derivative works of the Software, unless such copies or derivative
14+
works are solely in the form of machine-executable object code generated by
15+
a source language processor.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
20+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
21+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
22+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23+
DEALINGS IN THE SOFTWARE.

‎README.rst

+12-6
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,25 @@ Configuring ``Boost``
2929

3030
Boost can be downloaded from
3131
http://www.boost.org/users/download/. This library requires at least
32-
Boost 1.51.
32+
Boost 1.51. Follow instructions to build boost at
33+
http://www.boost.org/doc/html/bbv2/installation.html and set the
34+
environment variable BOOST_ROOT to the location of the installation.
3335

3436
Configuring ``google-test``
3537
---------------------------
3638

39+
Instructions can be found here:
40+
http://googletest.googlecode.com/svn/trunk/README . In order to locate
41+
using cmake, set the environment ``GTEST_ROOT`` to the location of the
42+
installation.
43+
3744
Building with CMake
3845
-------------------
3946

4047
::
48+
49+
$ set BOOST_ROOT=...
50+
$ set GTEST_ROOT=...
4151
$ mkdir _build
4252
$ cd _build
4353
$ cmake ..
@@ -47,12 +57,8 @@ Running the tests with CTest
4757
----------------------------
4858

4959
::
50-
$ ctest
51-
52-
Examples
53-
========
54-
5560

61+
$ ctest
5662

5763
License
5864
=======

0 commit comments

Comments
 (0)
Please sign in to comment.