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

https://github.com/kbrddestroyer/axonengine

Simple multipurpose networking library
https://github.com/kbrddestroyer/axonengine

c c-plus-plus cmake contributions-welcome cpp17 engine game-development help-wanted looking-for-contributors network seeking-collaborators

Last synced: about 2 months ago
JSON representation

Simple multipurpose networking library

Awesome Lists containing this project

README

          

# AxonEngine

Advanced eXchange Over Network

Work in progress, there's no stable version yet

## Repository health status

[![Linux Build](https://github.com/kbrddestroyer/AxonEngine/actions/workflows/linux-build.yml/badge.svg)](https://github.com/kbrddestroyer/AxonEngine/actions/workflows/linux-build.yml)

[![Windows Build](https://github.com/kbrddestroyer/AxonEngine/actions/workflows/windows-build.yml/badge.svg)](https://github.com/kbrddestroyer/AxonEngine/actions/workflows/windows-build.yml)

[![MacOS Build](https://github.com/kbrddestroyer/AxonEngine/actions/workflows/macos-build.yml/badge.svg)](https://github.com/kbrddestroyer/AxonEngine/actions/workflows/macos-build.yml)

## Before you start

- [Discord server](https://discord.gg/FQvZhSeHrr)
- [CONTRIBUTING.md](CONTRIBUTING.md)
- [Wiki](https://github.com/kbrddestroyer/AxonEngine/wiki)

## Overview

## Requirements

### Conan

```bash
cd conan/
./install-deps.sh Debug
./install-deps.sh Release
```

## Building

1. Manual build from command prompt

```bash
mkdir cmake-build && cd cmake-build
cmake .. -DCMAKE-TOOLCHAIN-FILE=../conan/build/Debug/conan_toolchain.cmake -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON
```