Compile Poco with MinGW on Windows
I need to compile poco with MinGW so I can use it in Qt Creator but cannot figure out how to, I've managed to compile poco in Visual Studio but I cannot use those libraries in Qt Creator. Complementing Cesar's answer (here, instead of adding a comment, for formatting purposes), you need something like this on your .pro file: INCLUDEPATH += "<path_to_poco_include_dir>" LIBS += -L"<path_to_poco_lib_dir>" -l<poco_lib> -l<poco_lib> E.g., in my case, I would have this (for debug builds): INCLUDEPATH += "C:/Dev/lib/poco/poco143/Debug/include" LIBS += -L"C:/Dev/lib/poco/poco143/lib" -lPocoFoundationd