Skip to content

merge two pkg-conf commands

gcc `pkg-config --cflags gtk4` hello.c -o hello `pkg-config --libs gtk4`

--cflags and --libs can be written together, making this line easier to read.

gcc `pkg-config --cflags --libs gtk4` hello.c -o hello

Merge request reports