Skip to content

Commit

Permalink
Added compilation guide
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakane7 committed Jul 13, 2023
1 parent a33b652 commit 0fb984f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
# UI-Toolkit

AvdanOS UI Toolkit made with Rust using the iced Library.

## Welp I can't get it running at first compile!

Yeah, me too... Before compiling make sure you have these two packages installed:
`cmake` & `fontconfig` (oh, and obviously don't forget Rust ;)

On Ubuntu:

```
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install cmake libfontconfig-dev1
```

On Fedora:

```
sudo dnf update
sudo dnf install cmake fontconfig-devel
```

On Arch:

```
sudo pacman -Syu
sudo pacman -S cmake lib32-fontconfig
```

On Void:

```
sudo xbps-install -Su
sudo xbps-install cmake fontconfig-devel
```

0 comments on commit 0fb984f

Please sign in to comment.