You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

server.pro 817B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2015-07-24T22:17:25
  4. #
  5. #-------------------------------------------------
  6. QT += core network
  7. QT -= gui
  8. LIBS += -lptsocketqt$$QT_MAJOR_VERSION -lwiringPi
  9. TARGET = gpioanalyser-server
  10. CONFIG += console
  11. CONFIG -= app_bundle
  12. QMAKE_CXXFLAGS += -std=c++11
  13. TEMPLATE = app
  14. SOURCES += main.cpp \
  15. mainclass.cpp \
  16. inputmanager.cpp \
  17. gpiomanager.cpp \
  18. servermanager.cpp \
  19. inputbusiness.cpp \
  20. randommanager.cpp \
  21. qcommandlineoption.cpp \
  22. qcommandlineparser.cpp \
  23. readthread.cpp
  24. HEADERS += \
  25. mainclass.h \
  26. inputmanager.h \
  27. gpiomanager.h \
  28. servermanager.h \
  29. inputbusiness.h \
  30. randommanager.h \
  31. qcommandlineoption.h \
  32. qcommandlineparser.h \
  33. readthread.h