ytServiceCore.pro 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. QT += core sql network websockets
  2. QT -= gui
  3. TARGET = ytServiceCore
  4. CONFIG += console
  5. CONFIG -= app_bundle
  6. TEMPLATE = app
  7. SOURCES += main.cpp \
  8. core.cpp \
  9. db_syncthread.cpp \
  10. datacenter.cpp \
  11. webdatathread.cpp \
  12. wscenter.cpp \
  13. programconf.cpp \
  14. wsclient.cpp \
  15. logthread.cpp \
  16. subsysreport.cpp \
  17. subreportthread.cpp
  18. HEADERS += \
  19. ytServiceShm.h \
  20. core.h \
  21. db_syncthread.h \
  22. QReplyTimeout.h \
  23. ../../WebInterface/WebDataCore/WebDataShm.h \
  24. datacenter.h \
  25. webdatathread.h \
  26. AlarmSet.h \
  27. wscenter.h \
  28. ytservicecore.h \
  29. programconf.h \
  30. wsclient.h \
  31. logthread.h \
  32. subreportthread.h \
  33. subsysreport.h \
  34. redis.h
  35. LIBS += -ljson-c -lssl -lcrypto
  36. LIBS += "/usr/local/lib/libhiredis.a"