From 77fb3a577b0710efae2a1d9ed97c26ae16f3a5ba Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sun, 16 Aug 2020 20:51:43 +0200 Subject: [PATCH] Allow overriding PREFIX --- qosmic.pro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qosmic.pro b/qosmic.pro index 1e98aa3..dc35b3b 100644 --- a/qosmic.pro +++ b/qosmic.pro @@ -2,7 +2,9 @@ #################### qmake project file for qosmic application ################# ################################################################################ ## Installation prefix on *nix/osx. Binaries are installed in $$PREFIX/bin -PREFIX = /usr +isEmpty(PREFIX) { + PREFIX = /usr +} ################################################################################