12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- QT += core sql network websockets
- QT -= gui
- TARGET = ytServiceCore
- CONFIG += console
- CONFIG -= app_bundle
- TEMPLATE = app
- SOURCES += main.cpp \
- core.cpp \
- db_syncthread.cpp \
- datacenter.cpp \
- webdatathread.cpp \
- wscenter.cpp \
- programconf.cpp \
- wsclient.cpp \
- logthread.cpp \
- subsysreport.cpp \
- subreportthread.cpp
- HEADERS += \
- ytServiceShm.h \
- core.h \
- db_syncthread.h \
- QReplyTimeout.h \
- ../../WebInterface/WebDataCore/WebDataShm.h \
- datacenter.h \
- webdatathread.h \
- AlarmSet.h \
- wscenter.h \
- ytservicecore.h \
- programconf.h \
- wsclient.h \
- logthread.h \
- subreportthread.h \
- subsysreport.h \
- redis.h
- LIBS += -ljson-c -lssl -lcrypto
- LIBS += "/usr/local/lib/libhiredis.a"
|