iconstudio / eagine-all

Collection of C++ libraries wrapping SSL, OpenGL, OpenAL and EGL including utilities for writing distributed applications with graphics and/or audio rendering.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EAGine All

Author: Matúš Chochlík <chochlik@gmail.com>

EAGine is a collection of C++ libraries providing set of basic utilities, C++ wrappers for OpenGL, OpenAL, EGL, SSL, and a message bus useful for writing potentially distributed, multi-process applications with graphics rendering and/or audio playback.

This is the main repository for the whole project and implements a build system for the following sub-modules:

This diagram shows the dependencies between the sub-modules:

Component dependency graph

Cloning the repo

git clone https://github.com/matus-chochlik/eagine-all.git

Building the code

The project uses cmake-based build system so you can use the following to build and install the code:

mkdir -p /path/to/build/dir
cd /path/to/build/dir
cmake -DCMAKE_BUILD_TYPE=Release \
      -DCMAKE_INSTALL_PREFIX=/path/to/install/dir \
      /path/to/eagine-all/
cmake --build . --target install --parallel 16

License

Copyright Matúš Chochlík, 2015-2023. Distributed under the Boost Software License, Version 1.0. See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt

The applications using Qt5 are distributed under the GNU GENERAL PUBLIC LICENSE version 3. See http://www.gnu.org/licenses/gpl-3.0.txt

About

Collection of C++ libraries wrapping SSL, OpenGL, OpenAL and EGL including utilities for writing distributed applications with graphics and/or audio rendering.

License:Boost Software License 1.0


Languages

Language:C++ 27.8%Language:Shell 27.6%Language:PHP 24.0%Language:CMake 17.8%Language:Dockerfile 2.9%