cimsqwbot.pro 633 B

1234567891011121314151617181920212223242526272829
  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. HEADERS += \
  13. Client.h \
  14. App.h \
  15. ServerQuery.h \
  16. SshClient.h \
  17. ActiveClient.h \
  18. Settings.h
  19. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../libqwclient/release/ -lqwclient
  20. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../libqwclient/debug/ -lqwclient
  21. else:unix:!symbian: LIBS += -L$$PWD/../libqwclient/ -lqwclient
  22. INCLUDEPATH += $$PWD/../libqwclient
  23. DEPENDPATH += $$PWD/../libqwclient