Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
0b52a873
Commit
0b52a873
authored
May 26, 2010
by
Oswald Buddenhagen
Browse files
escape backslashes (or don't use them at all, resp.)
parent
27cb7ac2
Changes
3
Hide whitespace changes
Inline
Side-by-side
doc/doc.pri
View file @
0b52a873
...
...
@@ -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
}
...
...
qtcreator.pro
View file @
0b52a873
#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."
)
}
...
...
src/tools/qtcdebugger/qtcdebugger.pro
View file @
0b52a873
...
...
@@ -4,4 +4,4 @@ TARGET = qtcdebugger
TEMPLATE
=
app
SOURCES
+=
main
.
cpp
DESTDIR
=..
\
..
\
..
\
bin
DESTDIR
=..
/
..
/
..
/
bin
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment