#Daemon#
This repository contains the engine of the game Unvanquished. See below for build and launch instructions.
##Dependencies##
zlib, libgmp, libnettle, libcurl, SDL2, GLEW, libpng, libjpeg ≥ 8, libwebp ≥ 0.2.0, Freetype, OpenAL, libogg, libvorbis, libtheora, libopus, libopusfile
####Buildtime####
cmake
####Optional####
ncurses, libGeoIP
##Build Instructions##
Instead of make, you can use make -jN where N is your number of CPU cores to speed up compilation.
###Visual Studio###
- Run CMake.
- Choose your compiler.
- Open
Daemon.slnand compile.
###Linux, Mac OS X, MSYS###
mkdir build && cd buildcmake ..make
###Linux cross-compile to Windows###
mkdir build && cd buildcmake -DCMAKE_TOOLCHAIN_FILE=../cmake/cross-toolchain-mingw32.cmake ..¹make
¹ Use cross-toolchain-mingw64.cmake for a Win64 build.