Skip to content
Benedikt Hallinger edited this page Dec 2, 2020 · 16 revisions

Welcome to the fgcom-mumble wiki!

Compiling mumble 1.4.0 plugin branch from krzmbrzl on a debian testing (bullseye) system

as root:

apt-get install build-essential pkg-config qttools5-dev g++-multilib libssl-dev protobuf-c-compiler
apt-get install libluajit-5.1-dev protobuf-c-compiler libprotobuf-c-dev libssl-dev libopus-dev libev-dev

as ordinary user:

# only the first time run:
git clone https://github.com/Krzmbrzl/mumble.git
cd mumble
git remote add Krzmbrzl https://github.com/Krzmbrzl/mumble.git

# get current sources from plugin branch
git reset --hard
git fetch Krzmbrzl && git checkout Krzmbrzl/plugin-API
git submodule update --init --recursive

# Build
[ -d build ] && rm -rf build
mkdir build
cd build
#cmake -DCMAKE_BUILD_TYPE=Debug -Dbundled-poco=ON ..
#cmake -Dstatic=ON -DCMAKE_BUILD_TYPE=Debug -Dbundled-poco=ON ..
cmake -Dbundled-poco=ON ..
make clean && make


After that, install fgcom-mumble:
`build$ ./mumble ../../FGCom-mumble/fgcom-mumble-client-binOnly-0.7.0.zip`
Then start mumble (`build$ ./mumble`), activate the plugin from mumbles settings dialog and connect to the server. You should be ready to go!