12345678910111213141516171819202122232425 |
- TEMPLATE = app
- CONFIG += console
- QT += network sql
- QT -= gui
- SOURCES += main.cpp \
- Client.cpp \
- App.cpp \
- ServerQuery.cpp \
- SshClient.cpp \
- ServerQueryThread.cpp
- HEADERS += \
- Client.h \
- App.h \
- ServerQuery.h \
- SshClient.h \
- ServerQueryThread.h
- win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../qwclient/release/ -lqwclient
- else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../qwclient/debug/ -lqwclient
- else:unix:!macx:!symbian: LIBS += -L$$PWD/../qwclient/ -lqwclient
- INCLUDEPATH += $$PWD/../qwclient
- DEPENDPATH += $$PWD/../qwclient
|