How to find if Visual Studion 2008 installed?
In which directory it is installed?
And in which directore is nmake exist?
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.QByteArray qgetenv(const char *varName)
so, in your case if VS variables were set this code should help youQt Code:
... qDebug() << qgetenv("PATH"); ...To copy to clipboard, switch view to plain text mode
Qt Code:
... qDebug() << qgetenv("VCInstallDir"); ...To copy to clipboard, switch view to plain text mode
Qt Assistant -- rocks!
please, use tags [CODE] & [/CODE].
Bookmarks