driver_voiceController_TcpServer.pro 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. QT += core gui
  2. QT += network
  3. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  4. TARGET = driver_voiceController_TcpServer
  5. TEMPLATE = app
  6. # The following define makes your compiler emit warnings if you use
  7. # any feature of Qt which as been marked as deprecated (the exact warnings
  8. # depend on your compiler). Please consult the documentation of the
  9. # deprecated API in order to know how to port your code away from it.
  10. DEFINES += QT_DEPRECATED_WARNINGS
  11. # You can also make your code fail to compile if you use deprecated APIs.
  12. # In order to do so, uncomment the following line.
  13. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  14. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  15. INCLUDEPATH += $$PWD/../../../include/
  16. LIBS += -L$$PWD/../../../bin/ -lxmlparam -lmodulecomm -livlog -livfault -lprotobuf
  17. INCLUDEPATH += $$PWD/../../include/msgtype
  18. SOURCES += main.cpp\
  19. mainwindow.cpp \
  20. ../../include/msgtype/decition.pb.cc
  21. HEADERS += mainwindow.h \
  22. ../../include/msgtype/decition.pb.h
  23. FORMS += mainwindow.ui
  24. RESOURCES += \
  25. res.qrc