This is just a project of implementing the tutorials of BehaviourTree.CPP using Docker and CMake. Take note that this project is being tested on Ubuntu 20.04 environment only.
./builldDockerImage.sh
./runDockerFile.sh
For example, executable of tutorial01
./tutorial01
exit
sudo apt-get update -y
sudo apt-get install -y libwxgtk3.0-gtk3-dev (PS: for Ubuntu 20.04)
sudo apt-get install -y libwxgtk3.0-dev (PS: for other versions of Ubuntu)
Install the BehaviourTree.CPP into your local machine as instructed here
mkdir build; cd build
cmake ..
make
sudo make install
In this directory
mkdir build
cd build
cmake ..
cmake --build .
For example,
./tutorial01