/codingame-great-escape

My attempt at the CodinGame multiplayer contest "The Great Escape"

Primary LanguageC++MIT LicenseMIT

codingame-great-escape

Join the chat at https://gitter.im/SRombauts/codingame-great-escape

Travis CI Linux Build Status AppVeyor Windows Build status

My attempt at the Multiplayer CodinGame contest "The Great Escape".

Copyright (c) 2015 SĂ©bastien Rombauts (sebastien.rombauts@gmail.com)

Building & testing with CMake

### Get Google Test submodule

git submodule init
git submodule update

### Typical generic build (see also "build.bat" or "./build.sh")

mkdir build
cd build
cmake ..        # cmake .. -G "Visual Studio 10"    # for Visual Studio 2010
cmake --build . # make
ctest .         # make test

### Debug build for Unix Makefiles

mkdir Debug
cd Debug
cmake .. -DCMAKE_BUILD_TYPE=Debug   # -G "Unix Makefiles"
cmake --build . # make
ctest .         # make test

### Release build

mkdir Release
cd Release
cmake .. -DCMAKE_BUILD_TYPE=Release  # -G "Unix Makefiles"
cmake --build . # make
ctest .         # make test

### Continuous Integration

This project is continuously tested under Ubuntu Linux with the gcc and clang compilers using the Travis CI community service with the above CMake building and testing procedure. It is also tested in the same way under Windows Server 2012 R2 with Visual Studio 2013 compiler using the AppVeyor countinuous integration service.

Detailed results can be seen online: