poco

C++ libraries for building network and internet applications

brewmacoslinux
Try with needOr install directly
Source

About

C++ class libraries for building network and internet-based applications

Examples

build a C++ project that uses POCO networking libraries$ c++ -I/usr/local/opt/poco/include -L/usr/local/opt/poco/lib -lPocoNet -lPocoFoundation myapp.cpp -o myapp
link POCO libraries when compiling a web server application$ g++ -I/usr/local/opt/poco/include myserver.cpp -o myserver -L/usr/local/opt/poco/lib -lPocoNet -lPocoUtil -lPocoFoundation
use POCO JSON parsing in a C++ program$ clang++ -I/usr/local/opt/poco/include parser.cpp -o parser -L/usr/local/opt/poco/lib -lPocoJSON -lPocoFoundation
find POCO header files and libraries after installation$ ls /usr/local/opt/poco/include && ls /usr/local/opt/poco/lib
check installed POCO version$ pkg-config --modversion poco || grep -r 'POCO_VERSION' /usr/local/opt/poco/include