1234567891011121314151617181920212223242526272829 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2013-12-12T18:00:31
- #
- #-------------------------------------------------
-
- QT += core network
-
- QT -= gui
-
- TARGET = tests
- CONFIG += console
- CONFIG -= app_bundle
-
- TEMPLATE = app
-
-
- SOURCES += main.cpp \
- test.cpp
-
- win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../libptsocket/release/ -llibptsocket
- else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../libptsocket/debug/ -llibptsocket
- else:unix:!macx: LIBS += -L$$OUT_PWD/../libptsocket/ -llibptsocket
-
- INCLUDEPATH += $$PWD/../libptsocket
- DEPENDPATH += $$PWD/../libptsocket
-
- HEADERS += \
- test.h
|