summaryrefslogtreecommitdiffstats
path: root/qmake/doc/snippets/qmake/environment.pro
blob: 808bdeba474ed32227f7f06ffd12361a0509dec3 (plain)
1
2
3
4
5
6
7
8
9
#! [0] #! [1]
DESTDIR = $$(PWD)
message(The project will be installed in $$DESTDIR)
#! [0]

DESTDIR = $(PWD)
message(The project will be installed in the value of PWD)
message(when the Makefile is processed.)
#! [1]