airkiss.pro 1.2 KB

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