mock-investigate.pro 566 B

123456789101112131415161718192021
  1. QT -= gui
  2. QT += core webchannel websockets
  3. CONFIG += c++11 console
  4. CONFIG -= app_bundle
  5. # You can make your code fail to compile if it uses deprecated APIs.
  6. # In order to do so, uncomment the following line.
  7. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  8. SOURCES += \
  9. main.cpp \
  10. wsserver.cpp
  11. # Default rules for deployment.
  12. qnx: target.path = /tmp/$${TARGET}/bin
  13. else: unix:!android: target.path = /opt/$${TARGET}/bin
  14. !isEmpty(target.path): INSTALLS += target
  15. HEADERS += \
  16. wsserver.h