Skip to content
Snippets Groups Projects
Commit 0506f531 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

Add a sample config file and a Makefile to make running (for testing) easier

parent 447c9688
No related branches found
No related tags found
No related merge requests found
......@@ -6,3 +6,7 @@ indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[Makefile]
indent_style = tab
indent_size = 8
Makefile 0 → 100644
all:
ninja -C build
install:
ninja -C build install
uninstall:
ninja -C build uninstall
clean:
ninja -C build clean
run: all
WIREPLUMBER_MODULE_DIR=build/modules \
WIREPLUMBER_CONFIG_FILE=src/wireplumber.conf \
$(DBG) ./build/src/wireplumber
gdb:
$(MAKE) run DBG=gdb
valgrind:
$(MAKE) run DBG="DISABLE_RTKIT=1 valgrind"
load-module C libwireplumber-module-pipewire
load-module C libwireplumber-module-pw-audio-softdsp-endpoint
load-module C libwireplumber-module-pw-alsa-udev
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment