mephi-voip.pro 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. QT += qml quick
  2. CONFIG += c++11 ordered
  3. SUBDIRS += api/qtrest
  4. SOURCES += main.cpp \
  5. models/Unit.cpp \
  6. api/Voip.cpp \
  7. models/Appointment.cpp \
  8. models/Subscriber.cpp
  9. #api/qtrest/src/apibase.cpp\
  10. RESOURCES += qml.qrc
  11. # Additional import path used to resolve QML modules in Qt Creator's code model
  12. QML_IMPORT_PATH =
  13. # Additional import path used to resolve QML modules just for Qt Quick Designer
  14. QML_DESIGNER_IMPORT_PATH =
  15. # The following define makes your compiler emit warnings if you use
  16. # any feature of Qt which as been marked 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. # You can also make your code fail to compile if you use deprecated APIs.
  21. # In order to do so, uncomment the following line.
  22. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  23. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  24. # Default rules for deployment.
  25. qnx: target.path = /tmp/$${TARGET}/bin
  26. else: unix:!android: target.path = /opt/$${TARGET}/bin
  27. !isEmpty(target.path): INSTALLS += target
  28. INCLUDEPATH ''= $$system(pwd)/api/qtrest/src $$system(pwd)/api/qtrest/src/models
  29. DEPENDSPATH''= $$system(pwd)
  30. include(api/qtrest/com_github_kafeg_qtrest.pri)
  31. HEADERS += \
  32. models/Unit.h \
  33. api/Voip.h \
  34. main.h \
  35. models/Appointment.h \
  36. models/Subscriber.h