how to pass pkg-config static option with .pro file
Unsolved
General and Desktop
-
Hello
The equivalent command for this:
pkg-config --libs library
there is an PKGCONFIG option :
CONFIG += link_pkgconfig PKGCONFIG = \ gstreamer-full-1.0
but I do not know what is the equal option for
pkg-config --libs --static library
What is the way to link statically with pkg-config using .pro file ?
Thanks.
-
Hi,
I am not aware of an equivalent. One thing you can do is to manually call
pkg-config
and add the output toLIB
.