Designer project has been added

Designer project has been added
This commit is contained in:
Arin Alexander 2016-07-21 12:46:05 +03:00
parent 942dc47b8f
commit 5001738d76
5 changed files with 61 additions and 1 deletions

49
designer/designer.pro Normal file
View File

@ -0,0 +1,49 @@
include(../common.pri)
QT += core gui
TARGET = LRDesigner
TEMPLATE = app
SOURCES += main.cpp
INCLUDEPATH += $$PWD/../include
DEPENDPATH += $$PWD/../include
DEST_DIR = $${DEST_BINS}
REPORTS_DIR = $${DEST_DIR}
macx{
CONFIG += app_bundle
}
unix:{
LIBS += -L$${DEST_LIBS} -llimereport
contains(CONFIG,zint){
LIBS += -L$${DEST_LIBS} -lQtZint
}
DESTDIR = $$DEST_DIR
linux{
#Link share lib to ../lib rpath
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib
QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib
QMAKE_LFLAGS_RPATH += #. .. ./libs
}
target.path = $${DEST_DIR}
INSTALLS = target
}
win32 {
EXTRA_DIR ~= s,/,\\,g
DEST_DIR ~= s,/,\\,g
REPORTS_DIR ~= s,/,\\,g
DESTDIR = $$DEST_DIR
RC_FILE += mainicon.rc
contains(CONFIG,zint){
LIBS += -L$${DEST_LIBS} -lQtZint
}
LIBS += -L$${DEST_LIBS} -llimereport
}

10
designer/main.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <QApplication>
#include <LimeReport>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
LimeReport::ReportEngine report;
report.designReport();
return a.exec();
}

BIN
designer/main.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

1
designer/mainicon.rc Normal file
View File

@ -0,0 +1 @@
DI_ICON1 ICON "main.ico"

View File

@ -9,7 +9,7 @@ SUBDIRS += \
CONFIG += ordered CONFIG += ordered
SUBDIRS += demo_r1 demo_r2 SUBDIRS += demo_r1 demo_r2 designer