2021-12-20 04:53:07 +01:00
|
|
|
# Visualizer
|
|
|
|
|
|
|
|
Hopefully eventually a neat little realtime 3D audio visualizer.
|
|
|
|
|
2021-12-21 15:27:02 +01:00
|
|
|
DSP is hard.
|
|
|
|
|
|
|
|
## How to build
|
2021-12-26 02:02:39 +01:00
|
|
|
After cloning, perform the following commands
|
2021-12-21 15:27:02 +01:00
|
|
|
```
|
2021-12-26 02:02:39 +01:00
|
|
|
git submodule update --init --recursive
|
|
|
|
|
2021-12-21 15:27:02 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
2021-12-26 02:02:39 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Finally, to build the project do the following
|
|
|
|
|
2021-12-26 06:02:18 +01:00
|
|
|
### Linux
|
2021-12-26 02:02:39 +01:00
|
|
|
Run `make`
|
|
|
|
|
2021-12-26 06:02:18 +01:00
|
|
|
### Windows
|
|
|
|
CMake generated project files in the `build` directory which you can open in an IDE and build there.
|