What's the CMake equivalent of:
gcc filename.c -o filename $(pkg-config --libs --cflags mylib)
I am interested on the $(pkg-config --libs --cflags mylib)
part, since I already have code that compiles, and I just need to add the mylib
library.