Files
padlab/README.md

28 lines
591 B
Markdown
Raw Permalink Normal View History

2022-10-06 19:09:03 +11:00
# PadLab #
Playground for different analogue stick setups written with SDL2 for graphics and controller support.
### Building ###
Requirements:
- C99 compiler
- SDL 2.x
- CMake 3.1 or higher
2023-06-28 20:05:08 +10:00
Available backends are:
- `BUILD_OPENGL_LEGACY` OpenGL Compatibility profile 1.1 (default ON)
- `BUILD_OPENGL` OpenGL Core profile 3.3 (WIP)
- `BUILD_METAL` Fruit renderer (WIP, ON by default for APPLE)
OpenGL Core profile backend requires:
- Python 3
Metal backend requires:
- Fruit device
- Python 3
2022-10-06 19:09:03 +11:00
For *nix:
```shell
cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build
```