Triangles/README.md

37 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2020-08-09 06:26:49 +00:00
# Triangles
THIS PROJECT IS STILL A WORK IN PROGRESS!
A gui application that lets you draw triangles of different colors on a colored
background.
2021-04-05 02:59:18 +00:00
Uses [raygui](https://github.com/raysan5/raygui) for UI.
2020-08-09 06:26:49 +00:00
# Compiling
Create a build dir, run cmake, and then make to build.
mkdir buildDebug
cd buildDebug
cmake ..
make
## Dependencies
2021-04-05 02:59:18 +00:00
Raylib should be installed on the system. Other third-party dependencies are git
submodules and should be initialized with `git submodule update --init recursive`.
2020-08-09 06:32:21 +00:00
# Legal stuff
2021-04-05 02:59:18 +00:00
Uses [raylib](https://github.com/raysan5/raylib), which is licensed under the
[zlib license](https://choosealicense.com/licenses/zlib).
2020-08-09 07:23:12 +00:00
2021-04-05 02:59:18 +00:00
Uses [raygui](https://github.com/raysan5/raylib), which is licensed under the
[zlib license](https://choosealicense.com/licenses/zlib).
2020-08-09 06:32:21 +00:00
2021-04-05 02:59:18 +00:00
Uses [glm](https://github.com/g-truc/glm), which is licensed under the [Happy
Bunny License or the MIT License](https://github.com/g-truc/glm/blob/master/copying.txt).
2020-08-09 06:32:21 +00:00
Uses [catch](https://github.com/catchorg/Catch2), which is licensed under the
[Boost Software](https://choosealicense.com/licenses/bsl-1.0/) license.