Skip to content

Build on Debian Bullseye

Jakob Flierl edited this page Jun 19, 2022 · 6 revisions
sudo apt -y install libbullet-dev libassimp-dev liblua5.2-dev libluabind-dev \
                    freeglut3-dev libglew-dev qtbase5-dev git g++ make libsdl2-dev \
                    libqglviewer-dev-qt5 libqscintilla2-qt5-dev

Optional but recommended run-time dependencies:

sudo apt -y install openscad
sudo apt -y install povray povray-examples

For development Qt Creator is recommended:

sudo apt -y install qtcreator

Build and run BPP within Qt Creator:

git clone https://github.com/bullet-physics-playground/bpp --depth=1
cd bpp
qtcreator bpp.pro

Build and run BPP from command-line:

git clone https://github.com/bullet-physics-playground/bpp --depth=1
cd bpp
QT_SELECT=qt5 qmake CONFIG+=release
make -j $(nproc)
release/bpp

WIP