You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tests.pro 670B

1234567891011121314151617181920212223242526272829
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-12-12T18:00:31
  4. #
  5. #-------------------------------------------------
  6. QT += core network
  7. QT -= gui
  8. TARGET = tests
  9. CONFIG += console
  10. CONFIG -= app_bundle
  11. TEMPLATE = app
  12. SOURCES += main.cpp \
  13. test.cpp
  14. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../libptsocket/release/ -llibptsocket
  15. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../libptsocket/debug/ -llibptsocket
  16. else:unix:!macx: LIBS += -L$$OUT_PWD/../libptsocket/ -llibptsocket
  17. INCLUDEPATH += $$PWD/../libptsocket
  18. DEPENDPATH += $$PWD/../libptsocket
  19. HEADERS += \
  20. test.h