ytDashBoardCore.pro 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2021-06-21T10:06:44
  4. #
  5. #-------------------------------------------------
  6. QT += core network websockets sql
  7. QT -= gui
  8. CONFIG += c++11 console
  9. CONFIG -= app_bundle
  10. TARGET = ytDashBoardCore
  11. # The following define makes your compiler emit warnings if you use
  12. # any feature of Qt which as been marked deprecated (the exact warnings
  13. # depend on your compiler). Please consult the documentation of the
  14. # deprecated API in order to know how to port your code away from it.
  15. DEFINES += QT_DEPRECATED_WARNINGS
  16. SOURCES += \
  17. main.cpp \
  18. websocketserver.cpp \
  19. logthread.cpp \
  20. infocenterserver.cpp \
  21. infoclient.cpp \
  22. databoardcore.cpp \
  23. databasethread.cpp
  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. HEADERS += \
  29. websocketserver.h \
  30. logthread.h \
  31. infocenterserver.h \
  32. infoclient.h \
  33. dashboardshm.h \
  34. databoardmem.h \
  35. databoardcore.h \
  36. databasethread.h