Last active
December 18, 2022 22:25
-
-
Save theodric/7f59cd511d47af605b027804752497eb to your computer and use it in GitHub Desktop.
build DevilutionX on RetroPie/Debian 10 32-bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt install libgtest-dev google-mock cmake-extras libgmock-dev libbz2-dev libsodium-dev libsdl2-mixer-dev | |
cd /usr/src/ | |
wget https://github.com/diasurgical/devilutionX/archive/refs/heads/master.zip | |
unzip master.zip | |
cd devilutionX-master/ | |
mkdir build | |
cmake -S. -Bbuild -DVERSION_NUM=1.0.0 -DVERSION_SUFFIX=FFFFFFF -DCMAKE_BUILD_TYPE=Release | |
cd build | |
make -j`nproc` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment