1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2015-07-24T22:17:25
- #
- #-------------------------------------------------
-
- QT += core network
-
- QT -= gui
-
- LIBS += -lptsocketqt$$QT_MAJOR_VERSION -lwiringPi
-
- TARGET = gpioanalyser-server
- CONFIG += console
- CONFIG -= app_bundle
- QMAKE_CXXFLAGS += -std=c++11
-
- TEMPLATE = app
-
-
- SOURCES += main.cpp \
- mainclass.cpp \
- inputmanager.cpp \
- gpiomanager.cpp \
- servermanager.cpp \
- inputbusiness.cpp \
- randommanager.cpp \
- qcommandlineoption.cpp \
- qcommandlineparser.cpp \
- readthread.cpp
-
- HEADERS += \
- mainclass.h \
- inputmanager.h \
- gpiomanager.h \
- servermanager.h \
- inputbusiness.h \
- randommanager.h \
- qcommandlineoption.h \
- qcommandlineparser.h \
- readthread.h
|