You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

netsoul.pro 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-09-18T23:33:04
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = netsoul
  9. TEMPLATE = app
  10. SOURCES += main.cpp\
  11. mainwindow.cpp \
  12. connectwidget.cpp \
  13. contactswidget.cpp \
  14. dialogaddcontact.cpp \
  15. usertreewidget.cpp \
  16. dialogchat.cpp \
  17. chatmanager.cpp \
  18. dialogoptions.cpp \
  19. options.cpp
  20. HEADERS += \
  21. mainwindow.h \
  22. connectwidget.h \
  23. contactswidget.h \
  24. dialogaddcontact.h \
  25. usertreewidget.h \
  26. dialogchat.h \
  27. chatmanager.h \
  28. dialogoptions.h \
  29. options.h
  30. FORMS += \
  31. mainwindow.ui \
  32. connectwidget.ui \
  33. contactswidget.ui \
  34. dialogaddcontact.ui \
  35. dialogchat.ui \
  36. dialogoptions.ui
  37. RC_FILE = rc.rc
  38. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../Epimafia/release/ -lEpimafia
  39. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../Epimafia/debug/ -lEpimafia
  40. else:unix: LIBS += -L$$OUT_PWD/../Epimafia/ -lEpimafia
  41. unix:!symbian {
  42. maemo5 {
  43. target.path = /opt/usr/bin
  44. } else {
  45. target.path = /usr/bin
  46. }
  47. INSTALLS += target
  48. }
  49. INCLUDEPATH += $$PWD/../Epimafia
  50. DEPENDPATH += $$PWD/../Epimafia