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
|
2021-12-26 01:02:39 +00:00
|
|
|
After cloning, perform the following commands
|
2021-12-21 14:27:02 +00:00
|
|
|
```
|
2021-12-26 01:02:39 +00:00
|
|
|
git submodule update --init --recursive
|
|
|
|
|
2021-12-21 14:27:02 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
2021-12-26 01:02:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Finally, to build the project do the following
|
|
|
|
|
2021-12-26 05:02:18 +00:00
|
|
|
### Linux
|
2021-12-26 01:02:39 +00:00
|
|
|
Run `make`
|
|
|
|
|
2021-12-26 05:02:18 +00:00
|
|
|
### Windows
|
|
|
|
CMake generated project files in the `build` directory which you can open in an IDE and build there.
|