Writing a python build script for your Visual C++ project

If you’ve decided to write your own python build script for existing Visual Studio projects, then two questions would probably come up at first. What utility/commands are available for actually building *.sln/*. vcxproj files? How will you specify the appropriate version for your *.rc version resource file? Solution for #1. You can download the MSBuild … Continue reading Writing a python build script for your Visual C++ project

Resolving the LNK2019 error while linking QT app

If you’re developing a QT based application(which links QT libs as statically) and get LNK2019 ‘unresolved external symbol’ link errors when you try to link the other static library, Then you probably start looking those link settings such as, ☐ whether the architecture for the binary is correct(Are you trying to link an x86 lib to … Continue reading Resolving the LNK2019 error while linking QT app