How to find if Visual Studion 2008 installed?
In which directory it is installed?
And in which directore is nmake exist?
Printable View
How to find if Visual Studion 2008 installed?
In which directory it is installed?
And in which directore is nmake exist?
using this function you can get values of different env.vars.
e.g.Quote:
QByteArray qgetenv(const char *varName)
so, in your case if VS variables were set this code should help youCode:
... qDebug() << qgetenv("PATH"); ...
Code:
... qDebug() << qgetenv("VCInstallDir"); ...