demo_dbus.pro 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2022-04-11T17:40:03
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. QT += dbus xml
  8. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  9. TARGET = demo_dbus
  10. TEMPLATE = app
  11. DESTDIR = ../../bin
  12. # The following define makes your compiler emit warnings if you use
  13. # any feature of Qt which has been marked as deprecated (the exact warnings
  14. # depend on your compiler). Please consult the documentation of the
  15. # deprecated API in order to know how to port your code away from it.
  16. DEFINES += QT_DEPRECATED_WARNINGS
  17. # You can also make your code fail to compile if you use deprecated APIs.
  18. # In order to do so, uncomment the following line.
  19. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  20. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  21. SOURCES += \
  22. main.cpp \
  23. mainwindow.cpp \
  24. carlinkproxy.cpp \
  25. carlink.cpp
  26. HEADERS += \
  27. mainwindow.h \
  28. carlinkproxy.h \
  29. carlink.h \
  30. .../LinkBase.h
  31. FORMS += \
  32. mainwindow.ui