yes it runs on a smartwatch ^^
You need to install the build and runtime dependancies:
pkg install git cmake make clang mariadb boost-headers boost-static libc++
Clone the project
git clone https://github.com/duall/azerothcore-android.git
cd azerothcore-android
git clone https://github.com/liyunfan1223/mod-playerbots.git modules/mod-playerbots
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ \ -DCMAKE_C_COMPILER=$PREFIX/bin/clang \ -DCMAKE_CXX_COMPILER=$PREFIX/bin/clang++ \ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=static \ -DCMAKE_CXX_FLAGS="-D__ANDROID__ -DANDROID -Wno-deprecated-literal-operator" \ -DCMAKE_EXE_LINKER_FLAGS="-Wl,--allow-multiple-definition -lunwind"
make -j$(nproc)
make install
You will find executables in ~/azeroth-server/bin/
cp ~/azeroth-server/etc/authserver.conf.dist ~/azeroth-server/etc/authserver.conf && cp ~/azeroth-server/etc/worldserver.conf.dist ~/azeroth-server/etc/worldserver.conf
curl -L https://github.com/wowgaming/client-data/releases/download/v16/data.zip -o ~/data.zip && unzip ~/data.zip -d ~/azeroth-server/ && rm ~/data.zip
ln -sf $PREFIX/lib/aarch64-linux-android/libmariadb.so $PREFIX/lib/libmariadb.so
cd ~/azeroth-server/
./bin/authserver
./bin/worldserver
Enjoy