cimsqwbot.pro 600 B

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