view_ultrasonicradar.pro 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2021-05-19T15:47:48
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = view_ultrasonicradar
  9. TEMPLATE = app
  10. # The following define makes your compiler emit warnings if you use
  11. # any feature of Qt which has been marked as deprecated (the exact warnings
  12. # depend on your compiler). Please consult the documentation of the
  13. # deprecated API in order to know how to port your code away from it.
  14. DEFINES += QT_DEPRECATED_WARNINGS
  15. QMAKE_LFLAGS += -no-pie
  16. # You can also make your code fail to compile if you use deprecated APIs.
  17. # In order to do so, uncomment the following line.
  18. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  19. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  20. SOURCES += \
  21. main.cpp \
  22. mainwindow.cpp\
  23. myview.cpp \
  24. radarinfoview.cpp \
  25. radarview.cpp \
  26. ../../include/msgtype/ultrasonic.pb.cc \
  27. ../../include/msgtype/uradar.pb.cc
  28. HEADERS += \
  29. mainwindow.h \
  30. myview.h \
  31. radarinfoview.h \
  32. radarview.h \
  33. ../../include/msgtype/ultrasonic.pb.h \
  34. ../../include/msgtype/uradar.pb.h
  35. FORMS += \
  36. mainwindow.ui \
  37. SUBDIRS += \
  38. view_ultrasonicradar.pro \
  39. DISTFILES += \
  40. view_ultrasonicradar.pro.user \
  41. !include(../../../include/common.pri ) {
  42. error( "Couldn't find the common.pri file!" )
  43. }
  44. !include(../../../include/ivprotobuf.pri ) {
  45. error( "Couldn't find the ivprotobuf.pri file!" )
  46. }
  47. RESOURCES += \
  48. res.qrc