cmp_qwbot.pro 650 B

12345678910111213141516171819202122232425262728293031
  1. TEMPLATE = app
  2. CONFIG += console
  3. QT += network
  4. QT -= gui
  5. SOURCES += main.cpp \
  6. Client.cpp \
  7. App.cpp \
  8. ServerQuery.cpp \
  9. SshClient.cpp \
  10. ActiveClient.cpp \
  11. Settings.cpp \
  12. Pinger.cpp
  13. HEADERS += \
  14. Client.h \
  15. App.h \
  16. ServerQuery.h \
  17. SshClient.h \
  18. ActiveClient.h \
  19. Settings.h \
  20. Pinger.h
  21. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/libqwclient/release/ -lqwclient
  22. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/libqwclient/debug/ -lqwclient
  23. else:unix:!symbian: LIBS += -L$$PWD/libqwclient/ -lqwclient
  24. INCLUDEPATH += $$PWD/libqwclient
  25. DEPENDPATH += $$PWD/libqwclient