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.
######################################################################
# Automatically generated by qmake (2.01a) Fri Oct 24 22:10:01 2008
######################################################################
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += debug
win32 {
CONFIG -= debug
CONFIG += release
}
# Input
FORMS += detailseditor.ui \
filechooser.ui \
paintingeditor.ui
HEADERS += detailseditor.h \
filechooser.h \
paintingeditor.h
SOURCES += main.cpp \
detailseditor.cpp \
filechooser.cpp \
paintingeditor.cpp
######################################################################
# Automatically generated by qmake (2.01a) Fri Oct 24 22:10:01 2008
######################################################################
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += debug
win32 {
CONFIG -= debug
CONFIG += release
}
# Input
FORMS += detailseditor.ui \
filechooser.ui \
paintingeditor.ui
HEADERS += detailseditor.h \
filechooser.h \
paintingeditor.h
SOURCES += main.cpp \
detailseditor.cpp \
filechooser.cpp \
paintingeditor.cpp
To copy to clipboard, switch view to plain text mode
Bookmarks