Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 736 Bytes

README.md

File metadata and controls

51 lines (39 loc) · 736 Bytes

Dice Roller GTK


A dice roller implemented with C and GTK-4.

Dependencies

Must have GTK-4 installed on your system to run the app.

apt

apt install libgtk-4-1

pacman

pacman -S gtk4

dnf

dnf install gtk4

Compiling

Remember you need the development package to compile.

apt

apt install libgtk-4-1 libgtk-4-dev

pacman

pacman -S gtk4

dnf

dnf install gtk4 gtk4-devel

Simply use make to compile with GCC

make

or you can modify the compiler inside the make file

CC=your-compiler