Skip to content

Build on Debian Bookworm

Jakob Flierl edited this page Jul 20, 2025 · 2 revisions
sudo apt -y install libbullet-dev libassimp-dev liblua5.1-dev libluabind-dev \
                    freeglut3-dev libglew-dev qtbase5-dev git g++ make libsdl2-dev \
                    libqglviewer-dev-qt5

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
Clone this wiki locally