commit 7eefba533715912df9933f32f530f6382f67d562 Author: Andrey Cherepanov Date: Tue Dec 25 14:37:02 2018 +0300 Use LIBDIR for redefine install path for library diff --git a/lmcapp/src/lmcapp.pro b/lmcapp/src/lmcapp.pro index 88c4455..2a22c10 100644 --- a/lmcapp/src/lmcapp.pro +++ b/lmcapp/src/lmcapp.pro @@ -46,7 +46,11 @@ unix:!symbian { maemo5 { target.path = /opt/usr/lib } else { - target.path = /usr/local/lib + !isEmpty( LIBDIR ) { + target.path = $$LIBDIR + } else { + target.path = /usr/local/lib + } } INSTALLS += target }