520e2da89e4523b8c4d4b87593593cb94375538a
[o-du/phy.git] / fhi_lib / test / readme.txt
1 /******************************************************************************\r
2 *\r
3 *   Copyright (c) 2019 Intel.\r
4 *\r
5 *   Licensed under the Apache License, Version 2.0 (the "License");\r
6 *   you may not use this file except in compliance with the License.\r
7 *   You may obtain a copy of the License at\r
8 *\r
9 *       http://www.apache.org/licenses/LICENSE-2.0\r
10 *\r
11 *   Unless required by applicable law or agreed to in writing, software\r
12 *   distributed under the License is distributed on an "AS IS" BASIS,\r
13 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 *   See the License for the specific language governing permissions and\r
15 *   limitations under the License.\r
16 *\r
17 *******************************************************************************/\r
18 \r
19 \r
20 Download googletest from https://github.com/google/googletest/releases \r
21 Untar google test. \r
22 The recommended installation folder is /opt/gtest/\r
23 \r
24 Example build and installation commands:\r
25 sudo tar -xvf googletest-release-1.7.0.tar.gz\r
26 sudo mv googletest-release-1.7.0 gtest-1.7.0\r
27 export GTEST_DIR=/opt/gtest/gtest-1.7.0\r
28 cd ${GTEST_DIR}\r
29 sudo g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} -pthread -c ${GTEST_DIR}/src/gtest-all.cc\r
30 sudo ar -rv libgtest.a gtest-all.o\r
31 cd ${GTEST_DIR}/build-aux\r
32 sudo cmake ${GTEST_DIR}\r
33 sudo make\r
34 cd ${GTEST_DIR}\r
35 sudo ln -s build-aux/libgtest_main.a libgtest_main.a\r
36 \r
37 setup GTEST_ROOT \r
38 \r
39 export GTEST_ROOT=/opt/gtest/gtest-1.7.0