https://github.com/maximus5684/alsaplusplus
A C++ Wrapper for ALSA on Linux
https://github.com/maximus5684/alsaplusplus
alsa cplusplus cplusplus-11 linux wrapper
Last synced: 9 months ago
JSON representation
A C++ Wrapper for ALSA on Linux
- Host: GitHub
- URL: https://github.com/maximus5684/alsaplusplus
- Owner: maximus5684
- Created: 2017-10-10T02:34:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-01T05:18:59.000Z (almost 6 years ago)
- Last Synced: 2025-04-10T01:06:52.893Z (9 months ago)
- Topics: alsa, cplusplus, cplusplus-11, linux, wrapper
- Language: C++
- Size: 35.2 KB
- Stars: 17
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Wrapper for ALSA C API #
[](https://circleci.com/gh/maximus5684/alsaplusplus)
A basic C++14 wrapper for the ALSA C API on Linux.
## Requirements:
* A Linux-based system
* CMake 3.1 or higher
* The ALSA C API (libasound2-dev on Ubuntu/Debian)
## Installation:
1. Clone this repository.
2. In the cloned folder, run:
```
mkdir build && cd build
cmake ..
make
sudo make install
```
If you want the example files to be built/installed, change the `cmake` command above to:
```
cmake .. -DWITH_EXAMPLES=ON
```
## Usage:
See the example files in the repository or the header files.