Skip to content

Build ‐ Linux ‐ OpenSuSE

Parracodea edited this page Mar 23, 2024 · 1 revision

These instructions have not been tested in a long time and might not be up to date

Be sure to check Build for generic instructions.

The following builds a server on opensuse which the client version 2017-05-06 can connect to.

sudo zypper install git cmake make gcc gcc-g++ sfml2-devel

cd ~/wherever
git clone https://github.com/daid/EmptyEpsilon.git
git clone https://github.com/daid/SeriousProton.git

cd EmptyEpsilon
mkdir builddir
cd builddir

cmake .. -DSERIOUS_PROTON_DIR=$PWD/../../SeriousProton/ -DCPACK_PACKAGE_VERSION="2017.05.06" -DCPACK_PACKAGE_VERSION_MAJOR=2017 -DCPACK_PACKAGE_VERSION_MINOR=05 -DCPACK_PACKAGE_VERSION_PATCH=06
make

sudo make install
Clone this wiki locally