diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-02-28 17:27:18 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-03-01 17:51:46 (GMT) |
commit | 6b735fab1543cc9bc9cc25171b6c85d0f871587f (patch) | |
tree | e132b00578cd2a57727057259cd72a97ea0c979d /doc/src/snippets/qmake | |
parent | ed08a271cc0c2c7c8951022e0de043a7e4876f98 (diff) | |
download | Qt-6b735fab1543cc9bc9cc25171b6c85d0f871587f.zip Qt-6b735fab1543cc9bc9cc25171b6c85d0f871587f.tar.gz Qt-6b735fab1543cc9bc9cc25171b6c85d0f871587f.tar.bz2 |
make the $$quote() function less prominent
it does something else than people expect it to do, so just "hide" it
(by not referring to it anywhere except in its own doc).
Reviewed-by: mariusSO
Diffstat (limited to 'doc/src/snippets/qmake')
-rw-r--r-- | doc/src/snippets/qmake/spaces.pro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/snippets/qmake/spaces.pro b/doc/src/snippets/qmake/spaces.pro index 544ef05..614d4c5 100644 --- a/doc/src/snippets/qmake/spaces.pro +++ b/doc/src/snippets/qmake/spaces.pro @@ -1,9 +1,9 @@ #! [quoting library paths with spaces] -win32:LIBS += $$quote(C:/mylibs/extra libs/extra.lib) -unix:LIBS += $$quote(-L/home/user/extra libs) -lextra +win32:LIBS += "C:/mylibs/extra libs/extra.lib" +unix:LIBS += "-L/home/user/extra libs" -lextra #! [quoting library paths with spaces] #! [quoting include paths with spaces] -win32:INCLUDEPATH += $$quote(C:/mylibs/extra headers) -unix:INCLUDEPATH += $$quote(/home/user/extra headers) +win32:INCLUDEPATH += "C:/mylibs/extra headers" +unix:INCLUDEPATH += "/home/user/extra headers" #! [quoting include paths with spaces] |