Qt 4.2.3 Windows open source edition.
In my *.pro file I have something like this:
IMAGES = icons/icon1.png \
icons/resize.png \
....
Well, make fails with a "missing separator" error. This is because qmake created a wrong Makefile.Release.
In the Makefile.Release, instead of icons\resize.png appears:
icons
esize.png
It seems that the "\r" characters in "icons\resize" is interpreted as a line break.
This problem happens too with filenames starting with "t" and "n" (\t \n).
So I can't have any files starting with "r", "t" or "n" in the IMAGES section of the pro file.
I tried writing it "icons\resize.png", "icons//resize.png", "icons\\resize.png", nothing... the same result.
Is this a bug or am I doing something wrong?
(This problem doesn't occur in linux)
Bookmarks