4 lines
129 B
Bash
Executable File
4 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gcc -Wall -g helloworld.c -o helloworld `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0` && ./helloworld
|