Hi

I am experiencing a very strange error: I created a .pro file and a couple of source files on a linux machine, and after generating a Makefile and compiling successfully numerous times, committed them to an SVN repository, and checked out that repository on a windows machine. However, running qmake in the directory with the .pro file gives "Error processing project file: paintingeditor.pro", with no more information. I have tried removing various statements, qmake-ing other .pro files (which worked), changing the name of the directory to paintingeditor, and nothing works -- am I missing something totally obvious here? I can't seem to find any explanation for this problem. Running qmake -Wall prints out something about Operator= (Q_EXT_OBJ) changing previously set values or something like that, but the exact same message was printed with the other, working .pro files.

I am using Qt 4.4.3 on Windows XP Pro. The contents of my .pro file are below.

Qt Code:
  1. ######################################################################
  2. # Automatically generated by qmake (2.01a) Fri Oct 24 22:10:01 2008
  3. ######################################################################
  4.  
  5. TEMPLATE = app
  6. TARGET =
  7. DEPENDPATH += .
  8. INCLUDEPATH += .
  9. CONFIG += debug
  10.  
  11. win32 {
  12. CONFIG -= debug
  13. CONFIG += release
  14. }
  15.  
  16. # Input
  17. FORMS += detailseditor.ui \
  18. filechooser.ui \
  19. paintingeditor.ui
  20. HEADERS += detailseditor.h \
  21. filechooser.h \
  22. paintingeditor.h
  23. SOURCES += main.cpp \
  24. detailseditor.cpp \
  25. filechooser.cpp \
  26. paintingeditor.cpp
To copy to clipboard, switch view to plain text mode