Milestone 2

This commit is contained in:
Joey Yakimowich-Payne 2026-01-29 17:24:51 -07:00
commit 866f0419ad
19 changed files with 2006 additions and 23 deletions

27
README.md Normal file
View file

@ -0,0 +1,27 @@
# warppipe
A C++ libpipewire library for creating virtual sinks/sources and managing links.
## Build
Requirements:
- CMake 3.20+
- pkg-config
- libpipewire-0.3 development files
- C++17 compiler
Aurora / Universal Blue (Homebrew):
```
/home/linuxbrew/.linuxbrew/bin/brew install cmake pkg-config pipewire
```
Build:
```
cmake -S . -B build
cmake --build build
```
Example:
```
./build/warppipe_example
```