https://github.com/jf17/gtk3-hello
GTK3 example . (Hello World)
https://github.com/jf17/gtk3-hello
c example gtk3 hello-world
Last synced: 13 days ago
JSON representation
GTK3 example . (Hello World)
- Host: GitHub
- URL: https://github.com/jf17/gtk3-hello
- Owner: jf17
- Created: 2020-07-03T21:23:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-20T16:40:25.000Z (over 1 year ago)
- Last Synced: 2025-01-12T09:28:20.795Z (over 1 year ago)
- Topics: c, example, gtk3, hello-world
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gtk3-hello
## build :
```bash
sudo apt install libgtk-3-dev -y
clang `pkg-config --cflags gtk+-3.0` -o hello hello.c `pkg-config --libs gtk+-3.0`
```
## run :
```bash
./hello
```
