mirror of
https://github.com/fralx/LimeReport.git
synced 2025-10-09 05:57:14 +03:00
1.0.1.7
This commit is contained in:
45
limereport.pro
Normal file
45
limereport.pro
Normal file
@@ -0,0 +1,45 @@
|
||||
#CONFIG +=zint
|
||||
#QMAKE_CFLAGS += -std=c99
|
||||
#ZINT_PATH = $$PWD/../zint-2.4.3
|
||||
#ZINT_VERSION = 2.4.3
|
||||
#include(qzint.pri)
|
||||
include(report-lib.pri)
|
||||
|
||||
TEMPLATE = lib
|
||||
QT += core xml sql script
|
||||
TARGET = limereport
|
||||
|
||||
DEFINES += LIMEREPORT_EXPORTS
|
||||
|
||||
EXTRA_FILES += \
|
||||
$$PWD/src/lrglobal.cpp \
|
||||
$$PWD/src/lrglobal.h \
|
||||
$$PWD/src/lrdatasourcemanagerintf.h \
|
||||
$$PWD/src/lrreportengine.h \
|
||||
$$PWD/src/lrscriptenginemanagerintf.h \
|
||||
$$PWD/src/lrcallbackdatasourceintf.h
|
||||
|
||||
DEST_DIR = $$PWD/include/
|
||||
|
||||
unix {
|
||||
for(FILE,EXTRA_FILES){
|
||||
QMAKE_POST_LINK += $$quote($$QMAKE_COPY $${FILE} $${DEST_DIR}$$escape_expand(\n\t))
|
||||
}
|
||||
}
|
||||
|
||||
win32 {
|
||||
EXTRA_FILES ~= s,/,\\,g
|
||||
DEST_DIR ~= s,/,\\,g
|
||||
for(FILE,EXTRA_FILES){
|
||||
QMAKE_POST_LINK += $$QMAKE_COPY $$quote($$FILE) $$quote($$DEST_DIR) $$escape_expand(\\n\\t)
|
||||
}
|
||||
}
|
||||
|
||||
DESTDIR = $$PWD/lib
|
||||
|
||||
DEPENDPATH += report report/bands report/base report/databrowser report/items report/objectinspector
|
||||
INCLUDEPATH += report report/bands report/base report/databrowser report/items report/objectinspector
|
||||
|
||||
CONFIG(release, debug|release): DESTDIR = $$PWD/lib/release/
|
||||
else:CONFIG(debug, debug|release): DESTDIR = $$PWD/lib/debug/
|
||||
|
Reference in New Issue
Block a user