mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-25 04:54:40 +03:00
not use end of / on $$VARIABLE_DIR for unix
This commit is contained in:
parent
54fe767e16
commit
aeb11d0318
@ -26,7 +26,7 @@ DEPENDPATH += $$PWD/../include
|
|||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
r1.qrc
|
r1.qrc
|
||||||
|
|
||||||
EXTRA_DIR += $$PWD/demo_reports/*
|
EXTRA_DIR += $$PWD/demo_reports
|
||||||
DEST_DIR = $${BUILD_DIR}/$${BUILD_TYPE}/demo
|
DEST_DIR = $${BUILD_DIR}/$${BUILD_TYPE}/demo
|
||||||
REPORTS_DIR = $${DEST_DIR}/demo_reports
|
REPORTS_DIR = $${DEST_DIR}/demo_reports
|
||||||
|
|
||||||
@ -36,8 +36,8 @@ unix:{
|
|||||||
LIBS += -L$${BUILD_DIR}/$${BUILD_TYPE}/lib -lQtZint
|
LIBS += -L$${BUILD_DIR}/$${BUILD_TYPE}/lib -lQtZint
|
||||||
}
|
}
|
||||||
DESTDIR = $$DEST_DIR
|
DESTDIR = $$DEST_DIR
|
||||||
QMAKE_POST_LINK += mkdir -p $$quote($$REPORTS_DIR) | $$QMAKE_COPY_DIR $$quote($$EXTRA_DIR) $$quote($$REPORTS_DIR) $$escape_expand(\n\t)
|
QMAKE_POST_LINK += mkdir -p $$quote($$REPORTS_DIR) | $$QMAKE_COPY $$quote($$EXTRA_DIR)/* $$quote($$REPORTS_DIR) $$escape_expand(\n\t)
|
||||||
!macx{
|
linux{
|
||||||
#Link share lib to ../lib rpath
|
#Link share lib to ../lib rpath
|
||||||
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN
|
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN
|
||||||
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib
|
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib
|
||||||
|
@ -28,10 +28,11 @@ include(limereport.pri)
|
|||||||
unix {
|
unix {
|
||||||
DESTDIR = $${BUILD_DIR}/$${BUILD_TYPE}/lib
|
DESTDIR = $${BUILD_DIR}/$${BUILD_TYPE}/lib
|
||||||
linux{
|
linux{
|
||||||
|
QMAKE_POST_LINK += mkdir -p $$quote($${DESTDIR}/include) $$escape_expand(\\n\\t) # qmake need make mkdir -p on subdirs more than root/
|
||||||
for(FILE,EXTRA_FILES){
|
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($${DESTDIR}/include) $$escape_expand(\\n\\t) # inside of libs make /include/files
|
||||||
}
|
}
|
||||||
QMAKE_POST_LINK += mkdir -p $$quote($${DESTDIR}/include) $$escape_expand(\\n\\t) # qmake need make mkdir -p on subdirs more than root/
|
|
||||||
}
|
}
|
||||||
macx{
|
macx{
|
||||||
for(FILE,EXTRA_FILES){
|
for(FILE,EXTRA_FILES){
|
||||||
|
Loading…
Reference in New Issue
Block a user