sncrec.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-11-09T08:02:38
  4. #
  5. #-------------------------------------------------
  6. QT += gui webkit
  7. TARGET = sncrec
  8. TEMPLATE = lib
  9. DESTDIR = ../../output
  10. INCLUDEPATH +=../SNCDatabase
  11. INCLUDEPATH +=../SNCZip
  12. INCLUDEPATH +=../SNCCore
  13. INCLUDEPATH +=../WSsso
  14. INCLUDEPATH +=../WSNumchk
  15. INCLUDEPATH +=../WSCube
  16. DEFINES += SNCREC_LIBRARY
  17. LIBS += ../../output/sncdatabase.dll\
  18. ../../output/snczip.dll\
  19. ../../output/snccore.dll\
  20. ../../output/wssso.dll\
  21. ../../output/wsnumchk.dll\
  22. ../../output/wscube.dll
  23. SOURCES += sncrec.cpp \
  24. formrec.cpp \
  25. formad.cpp \
  26. formtodayrec.cpp \
  27. formaccountinfo.cpp \
  28. autosyncdata.cpp
  29. HEADERS += sncrec.h\
  30. sncrec_global.h \
  31. formrec.h \
  32. formad.h \
  33. formtodayrec.h \
  34. formaccountinfo.h \
  35. autosyncdata.h
  36. unix:!symbian {
  37. maemo5 {
  38. target.path = /opt/usr/lib
  39. } else {
  40. target.path = /usr/lib
  41. }
  42. INSTALLS += target
  43. }
  44. FORMS += \
  45. formrec.ui \
  46. formad.ui \
  47. formtodayrec.ui \
  48. formaccountinfo.ui