Visualizer/README.md

16 lines
474 B
Markdown
Raw Normal View History

2021-12-20 03:53:07 +00:00
# Visualizer
Hopefully eventually a neat little realtime 3D audio visualizer.
2021-12-21 14:27:02 +00:00
DSP is hard.
## How to build
Initialize and update the submodule `vendor/imgui`.
If you don't have GLFW and GLM installed on your machine (e.g. because you're on windows or because you can't be bothered), initialize and update `vendor/glfw` and `vendor/glm` as well to build from source.
After that perform the following commands to generate build files
```
mkdir build
cd build
cmake ..
```