blob: 93006e39bbdef3ccf41fd0fe3a49e6d5489acee2 [file] [log] [blame]
Jerome Poichet7c997852014-05-20 10:50:05 -07001Installation Instructions
2*************************
3
4PREREQUISITES
5=============
6
7* Protobuf 2.4.1
8 http://code.google.com/p/protobuf/
9
10* OpenSSL 1.0.1
11 http://openssl.org/source
12
13* glog 0.3.2
14 http://code.google.com/p/google-glog/
15
16* Google Test 1.6.0
17 http://code.google.com/p/googletest/
18
19* Google Mock 1.6.0
20 http://code.google.com/p/googlemock
21
22
23BUILDING
24========
25
26* Build the required prerequisite libraries.
27
28* Build and install the OpenSSL library:
29 $ ./config shared
30 $ make
31 $ make install
32
33* Build and install the Google TV Pairing library:
34 $ ./configure --with-gtest=/path/to/gtest --with-gmock=/path/to/gmock
35 $ make
36 $ make install
37
38
39TESTING
40=======
41
42* Build and run the tests:
43 $ make check
44