Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thenachobit/geometriaengine
https://github.com/thenachobit/geometriaengine
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thenachobit/geometriaengine
- Owner: TheNachoBIT
- License: mit
- Created: 2021-11-05T22:34:46.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-12T12:10:12.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T16:57:36.395Z (8 months ago)
- Language: C
- Size: 58 MB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geometria Engine
![Stars](https://img.shields.io/github/stars/TheNachoBIT/GeometriaEngine)
![Issues](https://img.shields.io/github/issues/TheNachoBIT/GeometriaEngine)
![License](https://img.shields.io/badge/license-MIT-blue)## Installation
### Windows
* [Visual Studio](#visual-studio-windows)### Linux
* [Make](#make-linux)### Visual Studio (Windows)
Requirements:
* [Visual Studio (from 2005 to 2019, whatever version fits best for you) with the Deskop C++ Environment package](https://visualstudio.microsoft.com/vs/)Once you have the requirements, go to the main folder and either open the ``"GenerateProjectWindows.bat"`` and follow the instructions,
or open the command prompt/terminal in the folder and type:``
premake5-windows.exe (vs2019-2005)
``Wait for the process to finish and now a .sln will be created in the main folder. Now you can open and run it!
### Make (Linux)
Requirements:
Run this command in the terminal to make sure you have everything installed:``sudo apt install make build-essential gcc gcc-multilib g++-multilib libx11-dev libgl1-mesa-dev xorg-dev libglu1-mesa-dev openssl libssl-dev libcurl4-openssl-dev``
Once you have everything installed, go to the main folder and type in the terminal:
``./premake5-linux gmake2`` (Make sure the "premake5-linux" binary has all of the necessary read and write permissions)
And a Makefile project will be created once everything is finished. Now you can use:
``make``
and compile the entire project.