1234567891011121314151617181920212223242526272829303132333435 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2015-07-24T22:17:25
- #
- #-------------------------------------------------
-
- QT += core network
-
- QT -= gui
-
- LIBS += -lptsocket -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
-
- HEADERS += \
- mainclass.h \
- inputmanager.h \
- gpiomanager.h \
- servermanager.h \
- inputbusiness.h \
- randommanager.h
|