123456789101112131415161718 |
- QT += core network
- QT -= gui
- TARGET = tests
- TEMPLATE = app
- CONFIG += console
- CONFIG -= app_bundle
- CONFIG += debug
- include(../commons.pri)
-
- SOURCES += main.cpp test.cpp bctest.cpp
- HEADERS += test.h bctest.h
-
- win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../ptsocket/release/ -lptsocket
- else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../ptsocket/debug/ -lptsocket
- else:unix:!macx: LIBS += -L$$OUT_PWD/../ptsocket/ -lptsocket
-
- INCLUDEPATH += $$PWD/../ptsocket
- DEPENDPATH += $$PWD/../ptsocket
|