1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00

Add setup instructions

This commit is contained in:
Daniel Barber 2019-01-27 10:08:28 -05:00
parent b1fe4b525a
commit 04f19fbbb7
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8
2 changed files with 13 additions and 0 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# Persephone
An MPD client for macOS, written in Swift.
## Setup
Run `bin/setup` before opening the Xcode project.

6
bin/setup Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
cd libmpdclient && \
meson . output && \
ninja -C output
cd ..