signaling-server.pro 597 B

1234567891011121314151617181920212223
  1. QT -= gui
  2. QT += websockets
  3. CONFIG += c++latest 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. SignalingServer.cpp \
  10. main.cpp
  11. DEFINES += __cpp_lib_format
  12. # Default rules for deployment.
  13. qnx: target.path = /tmp/$${TARGET}/bin
  14. else: unix:!android: target.path = /opt/$${TARGET}/bin
  15. !isEmpty(target.path): INSTALLS += target
  16. HEADERS += \
  17. SignalingServer.h