Skip to content

nmarzagao/dice-roller-gtk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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