summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qmake/spaces.pro
blob: 544ef059534bfa85a0323644fba2ca5e5aa9ea01 (plain)
1
2
3
4
5
6
7
8
9
#! [quoting library paths with spaces]
win32:LIBS += $$quote(C:/mylibs/extra libs/extra.lib)
unix:LIBS += $$quote(-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)
#! [quoting include paths with spaces]