diff --git a/common.pri b/common.pri index 4799742..b9892f8 100644 --- a/common.pri +++ b/common.pri @@ -11,7 +11,7 @@ CONFIG(release, debug|release){ } BUILD_DIR = $$PWD/build/$${QT_VERSION} -DEST_INCLUDE_DIR = $$PWD/include/ +DEST_INCLUDE_DIR = $$PWD/include unix:!macx { ARCH_DIR = $${OUT_PWD}/unix diff --git a/limereport/limereport.pro b/limereport/limereport.pro index f2bf433..309a17a 100644 --- a/limereport/limereport.pro +++ b/limereport/limereport.pro @@ -25,12 +25,12 @@ EXTRA_FILES += \ include(limereport.pri) -unix { +unix:{ DESTDIR = $${BUILD_DIR}/$${BUILD_TYPE}/lib linux{ - QMAKE_POST_LINK += mkdir -p $$quote($${DESTDIR}/include) $$escape_expand(\\n\\t) # qmake need make mkdir -p on subdirs more than root/ + QMAKE_POST_LINK += mkdir -p $$quote($${DEST_INCLUDE_DIR}) $$escape_expand(\\n\\t) # qmake need make mkdir -p on subdirs more than root/ for(FILE,EXTRA_FILES){ - QMAKE_POST_LINK += $$QMAKE_COPY $$quote($$FILE) $$quote($${DESTDIR}/include) $$escape_expand(\\n\\t) # inside of libs make /include/files + QMAKE_POST_LINK += $$QMAKE_COPY $$quote($$FILE) $$quote($${DEST_INCLUDE_DIR}) $$escape_expand(\\n\\t) # inside of libs make /include/files } }