| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2013-11-09T08:02:38
- #
- #-------------------------------------------------
- QT += gui webkit
- TARGET = sncrec
- TEMPLATE = lib
- DESTDIR = ../../output
- INCLUDEPATH +=../SNCDatabase
- INCLUDEPATH +=../SNCZip
- INCLUDEPATH +=../SNCCore
- INCLUDEPATH +=../WSsso
- INCLUDEPATH +=../WSNumchk
- INCLUDEPATH +=../WSCube
- DEFINES += SNCREC_LIBRARY
- LIBS += ../../output/sncdatabase.dll\
- ../../output/snczip.dll\
- ../../output/snccore.dll\
- ../../output/wssso.dll\
- ../../output/wsnumchk.dll\
- ../../output/wscube.dll
- SOURCES += sncrec.cpp \
- formrec.cpp \
- formad.cpp \
- formtodayrec.cpp \
- formaccountinfo.cpp \
- autosyncdata.cpp
- HEADERS += sncrec.h\
- sncrec_global.h \
- formrec.h \
- formad.h \
- formtodayrec.h \
- formaccountinfo.h \
- autosyncdata.h
- unix:!symbian {
- maemo5 {
- target.path = /opt/usr/lib
- } else {
- target.path = /usr/lib
- }
- INSTALLS += target
- }
- FORMS += \
- formrec.ui \
- formad.ui \
- formtodayrec.ui \
- formaccountinfo.ui
|