diff options
Diffstat (limited to 'doc/src/snippets/qmake/environment.pro')
-rw-r--r-- | doc/src/snippets/qmake/environment.pro | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/src/snippets/qmake/environment.pro b/doc/src/snippets/qmake/environment.pro new file mode 100644 index 0000000..808bdeb --- /dev/null +++ b/doc/src/snippets/qmake/environment.pro @@ -0,0 +1,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] |