mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
Move build location from project source top dir to qmake top build dir
This commit is contained in:
parent
c5a033fe51
commit
384368dd38
2
.qmake.cache.in
Normal file
2
.qmake.cache.in
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
TOP_SRC_DIR=$$PWD
|
||||||
|
TOP_BUILD_DIR=$$OUT_PWD
|
2
.qmake.conf
Normal file
2
.qmake.conf
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
TOP_SRC_DIR=$$PWD
|
||||||
|
TOP_BUILD_DIR=$$shadowed($$PWD)
|
@ -24,7 +24,12 @@ CONFIG(release, debug|release){
|
|||||||
BUILD_TYPE = debug
|
BUILD_TYPE = debug
|
||||||
}
|
}
|
||||||
|
|
||||||
BUILD_DIR = $$PWD/build/$${QT_VERSION}
|
isEmpty(TOP_BUILD_DIR) {
|
||||||
|
BUILD_DIR = $${OUT_PWD}/build/$${QT_VERSION}
|
||||||
|
}else{
|
||||||
|
BUILD_DIR = $${TOP_BUILD_DIR}/build/$${QT_VERSION}
|
||||||
|
}
|
||||||
|
|
||||||
DEST_INCLUDE_DIR = $$PWD/include
|
DEST_INCLUDE_DIR = $$PWD/include
|
||||||
unix{
|
unix{
|
||||||
ARCH_DIR = $${OUT_PWD}/unix
|
ARCH_DIR = $${OUT_PWD}/unix
|
||||||
|
3
initvars.pro
Normal file
3
initvars.pro
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
TEMPLATE=subdirs
|
||||||
|
SUBDIRS= # don't build anything, we're just generating the .qmake.cache file
|
||||||
|
QMAKE_SUBSTITUTES += .qmake.cache.in
|
@ -10,12 +10,19 @@ contains(CONFIG, zint){
|
|||||||
}
|
}
|
||||||
|
|
||||||
export($$CONFIG)
|
export($$CONFIG)
|
||||||
SUBDIRS += \
|
|
||||||
limereport
|
|
||||||
|
|
||||||
CONFIG += ordered
|
CONFIG += ordered
|
||||||
|
SUBDIRS += \
|
||||||
|
initvars.pro \
|
||||||
|
limereport \
|
||||||
|
demo_r1 \
|
||||||
|
demo_r2 \
|
||||||
|
designer
|
||||||
|
|
||||||
SUBDIRS += demo_r1 demo_r2 designer
|
# QMake top level srcdir and builddir
|
||||||
|
# https://wiki.qt.io/QMake-top-level-srcdir-and-builddir
|
||||||
|
#Qt4 .qmake.cache.in
|
||||||
|
#Qt5 .qmake.conf
|
||||||
|
OTHER_FILES += \
|
||||||
|
.qmake.conf \
|
||||||
|
.qmake.cache.in
|
||||||
|
Loading…
Reference in New Issue
Block a user