building static version of Poco C++ libraries

c++, poco-libraries

Solution

Assuming you use you use autotools to build Poco, run `./configure` with the `--static` flag.

$ ./configure --static

See `./configure --help` for a full list of flags.

Problem

can any body guide us on how to build static version of the Poco C++ libraries ?

Original source