https://github.com/labsound/labsounddemo
Demonstrations and starter projects for LabSound
https://github.com/labsound/labsounddemo
Last synced: 1 day ago
JSON representation
Demonstrations and starter projects for LabSound
- Host: GitHub
- URL: https://github.com/labsound/labsounddemo
- Owner: LabSound
- License: other
- Created: 2021-01-31T07:12:07.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-03T22:13:29.000Z (over 4 years ago)
- Last Synced: 2024-12-30T08:44:33.150Z (about 1 year ago)
- Language: C++
- Size: 1.11 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LabSoundDemo
clone this repository recursively
```sh
git clone https://github.com/LabSound/LabSoundDemo --recursive
```
## LabSoundDemo
Build and install. The install is necessary to put the sample audio files in the right place.
```sh
mkdir build
cd build
cmake -- -DCMAKE_INSTALL_PREFIX="./install"
cmake --build . --target install --config Release
```
Run the demo
```sh
./install/bin/LabSoundDemo
```
### Note for IDE users
After running the cmake configuration step with the generator set to your IDE, open the resulting IDE file, and build the INSTALL target.
Set your run target to LabSoundDemo, and you will be able to run it in the IDE's debugger subsequently.
## LabSoundStarter
LabSoundStarter is a minimal Hello World example. Use it as a jumping off point for experimentation!
It is built and install via the steps detailed for LabSoundDemo.