-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# It is not recommended to run directly this script, which is divided into several independent blocks. | ||
# You should follow the steps and download necessary package sources before installation. | ||
|
||
# Install Boost and ZeroMQ | ||
sudo apt-get install libboost-all-dev | ||
sudo apt-get install libzmq3-dev | ||
|
||
# Install BehaviorTreeV3, cppzmq, xtl, xtensor | ||
# You should download install packages from Internet, decompress them and access the folder, then run following scripts: | ||
mkdir build && cd build | ||
CC=gcc-11 CXX=g++-11 cmake .. && make | ||
sudo make install | ||
|
||
# Install GTest | ||
sudo apt-get install libgtest-dev | ||
cd /usr/src/gtest | ||
sudo mkdir build && cd build | ||
sudo CC=gcc-11 CXX=g++-11 cmake .. && make | ||
cd lib | ||
sudo cp libgtest.a /usr/local/lib | ||
sudo cp libgtest_main.a /usr/local/lib |