Advertisement
Manianass

testq.pro

Jun 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.10 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2018-06-18T20:46:43
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT       += core gui
  8. QT       += network
  9. CONFIG   += c++11
  10. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  11.  
  12. TARGET = testq
  13. TEMPLATE = app
  14.  
  15. # The following define makes your compiler emit warnings if you use
  16. # any feature of Qt which has been marked as deprecated (the exact warnings
  17. # depend on your compiler). Please consult the documentation of the
  18. # deprecated API in order to know how to port your code away from it.
  19. DEFINES += QT_DEPRECATED_WARNINGS
  20.  
  21. # You can also make your code fail to compile if you use deprecated APIs.
  22. # In order to do so, uncomment the following line.
  23. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  24. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
  25.  
  26.  
  27. SOURCES += \
  28.         main.cpp \
  29.         mainwindow.cpp \
  30.         myudp.cpp
  31.  
  32. HEADERS += \
  33.         mainwindow.h \
  34.         myudp.h
  35.  
  36. FORMS += \
  37.         mainwindow.ui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement