dev/c/gtk-tutorial/helloworld/run_helloworld.sh

4 lines
129 B
Bash
Raw Normal View History

2012-10-24 15:43:42 +04:00
#!/bin/bash
2012-10-24 19:14:00 +04:00
gcc -Wall -g helloworld.c -o helloworld `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0` && ./helloworld