Ok so after looking into to it more Ive managed to isolate the problems.
Im using Visual Studio 2008 and I compiled Qt 4.6.2 from source for VS2008 and have the add-in installed on Windows 7 x64. Im trying to compile the Horde3DEditor_2008_with_GameEngine.sln solution, Configuration: Release Win32.
First I was getting alot of errors saying it could not find the Qt include files and managed to fix it by adding the Qt include dirs in Tools > Options > Projects and Solutions > VC++ Directories.
However I'm still getting this fatal error with the GameEnginePlugIn project:
Code:
c1xx : fatal error C1083: Cannot open source file: 'C:\qt-4.6.2/include': Permission denied
It seems to think the directory is a file. Ive checked my windows environment variables ($(QTDIR)) and folder permissions and found no problems there. Also whats with the unix-style forward slash, could that be it? They seem not to break anything else, so I doubt it.
Out of the 31 projects in the solution this is the only one failing. And of course the other projects in the solutions include Qt, so I'm baffled!
On a side note I'm also getting this warning:
Code:
Project : warning PRJ0018 : The following environment variables were not found:
$(GAMEENGINEPLUGIN)
Is this supposed to refer to a dll or a directory? I cant even seem to find where this its being invoked!
How do I define this? Do I define it in the Windows environment variables or within VS2008?