Skip to content
Christian Dullweber edited this page Jan 21, 2014 · 19 revisions

git and cmake should be on the path!

windows:

Visual Studio 2013 is required

execute:

git clone https://github.com/voxelinc/voxellancer.git
cd voxellancer
git submodule init
git submodule update
unzip lib/lib.zip
mkdir build
cd build
cmake -G "Visual Studio 12 Win64" ..

now start voxellancer.sln und set the debugging working directory for voxellancer to "$(ProjectDir)/../.."

linux:

(tested on ubuntu 13.10)

execute:

git clone https://github.com/voxelinc/voxellancer.git
cd voxellancer
sudo apt-get install -y build-essential xorg-dev libglu1-mesa-dev cmake \
    libboost-regex1.54-dev libudev-dev libopenal-dev libsndfile1-dev libjpeg-dev
./lib/setup_libs.sh
mkdir build
cd build
cmake ..
make voxellancer

Clone this wiki locally