Created
October 22, 2023 14:55
-
-
Save jdarge/38fe4594986579224a03529066547502 to your computer and use it in GitHub Desktop.
Fish Shell pkg-config workaround...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcc -o run main.c $(pkg-config --cflags --libs gtk4 | perl -pe 's/\s+/\n/g') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
alternatively:
sh -c 'gcc -o run main.c $(pkg-config --cflags --libs gtk4)'