SDLU/README.md

16 lines
729 B
Markdown
Raw Normal View History

2020-05-15 22:10:38 +00:00
# SDL Utility
2020-05-18 16:45:34 +00:00
A wrapper for SDL2 to make development on quick, simple graphics applications easier.
2020-05-18 21:08:54 +00:00
**This branch is not the final version yet. This version is missing a lot of the features planned for this library**
2020-05-18 20:05:27 +00:00
![C/C++ CI](https://github.com/Lauchmelder23/SDLU/workflows/C/C++%20CI/badge.svg?branch=development)
2020-05-18 19:52:04 +00:00
2020-05-18 16:45:34 +00:00
## How to compile
1. Clone the development branch `git clone -b development https://github.com/Lauchmelder23/SDLU`
2. Clone the submodules `git submodule update --init`
3. Create a build directory and enter it `mkdir build`, `cd build`
2020-05-18 16:49:58 +00:00
4. Run `ccmake ..` (Install ccmake via `sudo apt install cmake-curses-gui`)
2020-05-18 16:45:34 +00:00
5. Configure CMake and enable `ENABLE_EXAMPLE`
6. Click Generate
7. Exit ccmake and type `make`