1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Add missing WebSockets module

This commit is contained in:
Elias Steurer 2020-11-13 12:00:41 +01:00
parent 793b442051
commit adfb82d542
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ set(CMAKE_AUTOMOC ON)
find_package(
Qt5
COMPONENTS Quick QuickCompiler Widgets Gui WebEngine LinguistTools
COMPONENTS Quick QuickCompiler Widgets Gui WebEngine LinguistTools WebSockets
REQUIRED)
find_package(OpenSSL REQUIRED)
@ -96,6 +96,7 @@ target_link_libraries(
Qt5::Widgets
Qt5::Core
Qt5::WebEngine
Qt5::WebSockets
ScreenPlaySDK
benchmark::benchmark
benchmark::benchmark_main

View File

@ -44,6 +44,7 @@
#include <QString>
#include <QTimer>
#include <QVector>
#include <QWebSocketServer>
#include <memory>