I'm having trouble with Poco libraries. I need a simple solution to make the compilation easier. Is there any pkg-config
file for Poco library to use it into our make files? Or any alternative solution?
Currently I use Ubuntu GNU/Linux.
I'm trying to use poco libraries in my app, but I don't know how to link Poco libraries to it. In fact I don't know how many libraries should be linked against the app. I want to know if there is an easy way to do it, such as using pkg-config
files, as we do with gtkmm
, for example:
g++ prog.cc `pkg-config --gtkmm-2.4 --libs --cflags` -o prog
and the pkg-config
program appends appropriate libs and header files to our command.