| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2021-06-21T10:06:44
- #
- #-------------------------------------------------
- QT += core network websockets sql
- QT -= gui
- CONFIG += c++11 console
- CONFIG -= app_bundle
- TARGET = ytDashBoardCore
- # The following define makes your compiler emit warnings if you use
- # any feature of Qt which as been marked deprecated (the exact warnings
- # depend on your compiler). Please consult the documentation of the
- # deprecated API in order to know how to port your code away from it.
- DEFINES += QT_DEPRECATED_WARNINGS
- SOURCES += \
- main.cpp \
- websocketserver.cpp \
- logthread.cpp \
- infocenterserver.cpp \
- infoclient.cpp \
- databoardcore.cpp \
- databasethread.cpp
- # Default rules for deployment.
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- !isEmpty(target.path): INSTALLS += target
- HEADERS += \
- websocketserver.h \
- logthread.h \
- infocenterserver.h \
- infoclient.h \
- dashboardshm.h \
- databoardmem.h \
- databoardcore.h \
- databasethread.h
|