Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c41x/cpptoolset
My C++ common libs
https://github.com/c41x/cpptoolset
Last synced: 18 days ago
JSON representation
My C++ common libs
- Host: GitHub
- URL: https://github.com/c41x/cpptoolset
- Owner: c41x
- License: gpl-3.0
- Created: 2014-07-12T09:26:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-11-04T14:07:01.000Z (about 3 years ago)
- Last Synced: 2024-07-31T22:58:55.513Z (3 months ago)
- Language: C
- Size: 4.61 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# cpptoolset (my common C++ libs)
## Components:
- math library (SSE optimized) (vectors, matrices, 2D/3D, bounding shapes, frustum and many more)
- image encoding / decoding (PNG, JPEG, BMP, TGA)
- logger with signal handling
- signal - slots, events
- fast string manipulation utilities
- high frequency timers
- hardware info utility
- LISP interpreter
- random number generators
- perlin noise generators, FBM generators
- file system utilities
- directory watch
- streams
- VFS / LZ4 compression
- multithread task scheduler
- system hotkeys## Requirements:
- Platform: Windows / Linux
- Compiler: C++14 compilant: GCC 4.9+, MinGW 4.9+, VS 2015+## Installation
### Submodules
Repository is using submodules. To download all dependencies run `git submodule init` followed by `git submodule update` after clonning.
More info: http://git-scm.com/book/en/v2/Git-Tools-Submodules### Preparing project and compiling dependencies
- install NASM (nasm executable must be in path)
- install OpenGL development files (libgl1-mesa-dev, mesa-common-dev)
- install X11 development files (xorg-dev)
- build and install glbinding (https://github.com/cginternals/glbinding)
- go to `project` directory.
- run script `init.bat` (on Windows) or `sh init.sh` (on Linux)### Building
- run `cmake --build "project/release" --config Release`