An open API service indexing awesome lists of open source software.

https://github.com/cschreib/cobalt

Turn based strategy/exploration/management game in 2D. It is programmed in modern C++ using a client/server architecture, allowing for both single and multiplayer games.
https://github.com/cschreib/cobalt

client-server exploration game prototype strategy turn-based

Last synced: 10 months ago
JSON representation

Turn based strategy/exploration/management game in 2D. It is programmed in modern C++ using a client/server architecture, allowing for both single and multiplayer games.

Awesome Lists containing this project

README

          

---------------------------
1] Compilation instructions
---------------------------

Prerequisites:

You will need to install the following libraries before compiling:
1. SFML >= 2.0: http://www.sfml-dev.org/index.php
2. libclang >= 3.0: http://clang.llvm.org/docs/Tooling.html
3. Intel TBB >= 4.0: http://www.threadingbuildingblocks.org/

Compiling on Linux:

1. Open a terminal and navigate to this directory.
2. If it does not exist, create a new directory called 'build' (or whatever you like).
3. Navigate to this new directory.
4. Invoque 'cmake':
> cmake ../
5. 'cmake' will then tell you if any library is missing or not found. Fix the problems if any.
6. Compile everything using 'make':
> make
7. When the process is over, the compiled binaries are placed in the 'bin' folder.