| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2012-10-14T21:26:09
- #
- #-------------------------------------------------
- QT += gui webkit
- TARGET = SNCUser
- TEMPLATE = lib
- DESTDIR = ../../output
- INCLUDEPATH +=../wssso
- INCLUDEPATH +=../SNCDatabase
- INCLUDEPATH +=../SNCCore
- DEFINES += SNCUSER_LIBRARY
- LIBS += ../../output/wssso.dll\
- ../../output/sncdatabase.dll\
- ../../output/snccore.dll
- SOURCES += sncuser.cpp \
- formedituserinfo.cpp \
- formmffee.cpp \
- formuserlogon.cpp \
- dialoguserreg.cpp \
- formdefaultuserreg.cpp \
- formnumbercheckuser.cpp \
- dialoglogin.cpp \
- dialogbindsystem.cpp \
- formssowelcome.cpp \
- dialogchangepass.cpp \
- formsrvinfo.cpp \
- dialogmffeequery.cpp \
- dialogaccountinfo.cpp \
- dialogregister.cpp \
- xvalidatelabel.cpp
- HEADERS += sncuser.h\
- SNCUser_global.h \
- formedituserinfo.h \
- formmffee.h \
- formuserlogon.h \
- dialoguserreg.h \
- formdefaultuserreg.h \
- formnumbercheckuser.h \
- dialoglogin.h \
- dialogbindsystem.h \
- formssowelcome.h \
- dialogchangepass.h \
- formsrvinfo.h \
- dialogmffeequery.h \
- dialogaccountinfo.h \
- dialogregister.h \
- xvalidatelabel.h
- symbian {
- MMP_RULES += EXPORTUNFROZEN
- TARGET.UID3 = 0xE677C0EF
- TARGET.CAPABILITY =
- TARGET.EPOCALLOWDLLDATA = 1
- addFiles.sources = SNCUser.dll
- addFiles.path = !:/sys/bin
- DEPLOYMENT += addFiles
- }
- unix:!symbian {
- maemo5 {
- target.path = /opt/usr/lib
- } else {
- target.path = /usr/lib
- }
- INSTALLS += target
- }
- FORMS += \
- formuser.ui \
- formedituserinfo.ui \
- formmffee.ui \
- formuserlogon.ui \
- dialoguserreg.ui \
- formdefaultuserreg.ui \
- formnumbercheckuser.ui \
- dialoglogin.ui \
- dialogbindsystem.ui \
- formssowelcome.ui \
- dialogchangepass.ui \
- formsrvinfo.ui \
- dialogmffeequery.ui \
- dialogaccountinfo.ui \
- dialogregister.ui
|