I've just upgraded one of our projects from Qt 5.3.1 to Qt 5.5. We are using a statically built Qt (we build it ourselves) with the win32-msvc2013 make spec.
After upgrading, I've received a couple of unresolved externals which I could backtrace to the following two libraries which already are in the lib
directory after building Qt:
qtpcre(d).lib: Qt wrapper around the Perl Compatible Regular Expressions library
qtharfbuzzng(d).lib: Qt wrapper around the Harf Buzz NG Unicode Text shaping library
Manually adding these libraries (the Qt ones, not the original ones) to my Visual Studio project configuration resolves the linker errors, but our VS projects are generated using CMake (3.0.2 I think).
Is there a way to include these libraries using targets like Qt5::Core or something similar to the Qt Plugins? Or do I have to add them manually using FIND_LIBRARY or similar? So far I haven't found any CMake scripts related to those two libraries.