With VC ++ Express you get the whole SDK, you can use it to create ewerything. You do not need to use MS VS to create your application.
The following are the MS toolkit and sdk + IDE kit:
Ms toolchain
I'm not sure that MS is releasing a stand-alone toolchain for the compiler + linker, but this can be found on MSDN, of course.
Additional SDK Information:
MSDN
Summarize. You can install any binutils and toolsets on your development machine. However, you need to properly configure your project in order to successfully complete it. E.g. (by pointing INCLUDE, LIB, LIB_PATH to the correct SDK directories). You can compile and link your project manually. Complete disregard for the IDE (and, of course, you will be in the future).
Just try to automate your build.
Read about SCONS (since you use QT - it supports MOC objects), CMAKE or Qt QMAKE for this. Then the IDE problem is a less significant problem. And you should not stick to your IDE.
bua
source share