TDengine.pro 632 B

123456789101112131415161718192021222324252627282930
  1. QT -= gui
  2. TEMPLATE = lib
  3. DEFINES += TDENGINE_LIBRARY
  4. CONFIG += c++17
  5. # You can make your code fail to compile if it uses deprecated APIs.
  6. # In order to do so, uncomment the following line.
  7. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  8. INCLUDEPATH += ../../include
  9. HEADERS += ../../include/Client.h
  10. SOURCES += \
  11. TDengine.cpp
  12. HEADERS += \
  13. TDengine_global.h \
  14. TDengine.h
  15. # Default rules for deployment.
  16. unix {
  17. target.path = /usr/lib
  18. }else{
  19. DESTDIR = $$PWD/../../bin/plugins
  20. }
  21. !isEmpty(target.path): INSTALLS += target