選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

server.pro 645B

1234567891011121314151617181920212223242526272829303132333435
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2015-07-24T22:17:25
  4. #
  5. #-------------------------------------------------
  6. QT += core network
  7. QT -= gui
  8. LIBS += -lptsocket -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. HEADERS += \
  22. mainclass.h \
  23. inputmanager.h \
  24. gpiomanager.h \
  25. servermanager.h \
  26. inputbusiness.h \
  27. randommanager.h