Skip to content
Snippets Groups Projects
Commit 0b52a873 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

escape backslashes (or don't use them at all, resp.)

parent 27cb7ac2
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,8 @@ equals(QMAKE_DIR_SEP, /) { # unix, mingw+msys
# The lack of spaces in front of the && is necessary!
QDOC = set SRCDIR=$$PWD&& set OUTDIR=$$OUT_PWD/doc/html&& $$QDOC_BIN
} else { # nmake
QDOC = set SRCDIR=$$PWD $$escape_expand(\n\t) \
set OUTDIR=$$OUT_PWD/doc/html $$escape_expand(\n\t) \
QDOC = set SRCDIR=$$PWD $$escape_expand(\\n\\t) \
set OUTDIR=$$OUT_PWD/doc/html $$escape_expand(\\n\\t) \
$$QDOC_BIN
}
......
#version check qt
contains(QT_VERSION, ^4\.[0-6]\..*) {
contains(QT_VERSION, ^4\\.[0-6]\\..*) {
message("Cannot build Qt Creator with Qt version $${QT_VERSION}.")
error("Use at least Qt 4.7.")
}
......
......@@ -4,4 +4,4 @@ TARGET = qtcdebugger
TEMPLATE = app
SOURCES += main.cpp
DESTDIR=..\..\..\bin
DESTDIR=../../../bin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment