TDengine.pro 595 B

12345678910111213141516171819202122232425262728
  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. SOURCES += \
  10. TDengine.cpp
  11. HEADERS += \
  12. TDengine_global.h \
  13. TDengine.h
  14. # Default rules for deployment.
  15. unix {
  16. target.path = /usr/lib
  17. }else{
  18. DESTDIR = $$PWD/../../bin/plugins
  19. }
  20. !isEmpty(target.path): INSTALLS += target