https://github.com/lsp-plugins/lsp-r3d-wgl-lib
https://github.com/lsp-plugins/lsp-r3d-wgl-lib
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lsp-plugins/lsp-r3d-wgl-lib
- Owner: lsp-plugins
- License: lgpl-3.0
- Created: 2022-07-25T18:49:00.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-12-20T11:23:37.000Z (6 months ago)
- Last Synced: 2025-12-22T16:08:05.103Z (6 months ago)
- Language: Makefile
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Funding: .github/FUNDING.yml
- License: COPYING
Awesome Lists containing this project
README
# lsp-r3d-wgl-lib
Windows-based OpenGL 3D backend library for rendering scenes.
It provides:
* 3D rendering backend that uses OpenGL 2.0 library and extensions.
Requirements
======
The following packages need to be installed for building:
* gcc >= 4.9
* make >= 4.0
Building
======
To build the library, perform the following commands:
```bash
make config # Configure the build
make fetch # Fetch dependencies from Git repository
make
sudo make install
```
To get more build options, run:
```bash
make help
```
To uninstall library, simply issue:
```bash
make uninstall
```
To clean all binary files, run:
```bash
make clean
```
To clean the whole project tree including configuration files, run:
```bash
make prune
```