Hi All

I'm trying to compile a project in VS 2013. I'm using the 32 bit 2013 Qt version and have generated a .pro file automatically using Qt VS Add-in. I'm getting the C1083 error- the compiler can't open the moc file. This is the contents of the .pro;

Qt Code:
  1. TEMPLATE = app
  2. TARGET = Shot_Manager
  3. DESTDIR = ../Win32/Debug
  4. QT += core widgets gui
  5. CONFIG += debug
  6. DEFINES += WIN64 QT_DLL QT_WIDGETS_LIB
  7. INCLUDEPATH += ./GeneratedFiles \
  8. . \
  9. ./GeneratedFiles/Debug
  10. DEPENDPATH += .
  11. MOC_DIR += ./GeneratedFiles/debug
  12. OBJECTS_DIR += debug
  13. UI_DIR += ./GeneratedFiles
  14. RCC_DIR += ./GeneratedFiles
  15. include(Shot_Manager.pri)
To copy to clipboard, switch view to plain text mode 

Anyone know what I'm doing wrong? I can see the moc files in solution explorer and they appear to be in the path specified in the MOC_DIR...

Thanks