summaryrefslogtreecommitdiff
path: root/src/websockets/websockets.pro
diff options
context:
space:
mode:
authorSteven Ceuppens <steven.ceuppens@icloud.com>2013-09-29 20:41:29 +0200
committerSteven Ceuppens <steven.ceuppens@icloud.com>2013-09-29 20:50:42 +0200
commit7621610532e94ff1450a09153ab09d38b4cc0db4 (patch)
treea3fde2e453508f658af389fb3b841f697370206f /src/websockets/websockets.pro
parent9292fa44f4c8d58aa365b4389be040584a17c893 (diff)
downloadqtwebsockets-7621610532e94ff1450a09153ab09d38b4cc0db4.tar.gz
moved class to separate file
As QWebSocketFrame is quite big, i moved it into its own file, for futher implementation:wq Change-Id: Iadf51323d5e8151c8345057614f4c49f81e626b1 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/websockets.pro')
-rw-r--r--src/websockets/websockets.pro6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/websockets/websockets.pro b/src/websockets/websockets.pro
index e7d6bbc..5ba40c1 100644
--- a/src/websockets/websockets.pro
+++ b/src/websockets/websockets.pro
@@ -23,7 +23,8 @@ PRIVATE_HEADERS += \
$$PWD/qwebsockethandshakerequest_p.h \
$$PWD/qwebsockethandshakeresponse_p.h \
$$PWD/qwebsocketdataprocessor_p.h \
- $$PWD/qwebsocketcorsauthenticator_p.h
+ $$PWD/qwebsocketcorsauthenticator_p.h \
+ $$PWD/qwebsocketframe_p.h
SOURCES += \
$$PWD/qwebsocket.cpp \
@@ -34,6 +35,7 @@ SOURCES += \
$$PWD/qwebsockethandshakerequest_p.cpp \
$$PWD/qwebsockethandshakeresponse_p.cpp \
$$PWD/qwebsocketdataprocessor_p.cpp \
- $$PWD/qwebsocketcorsauthenticator.cpp
+ $$PWD/qwebsocketcorsauthenticator.cpp \
+ $$PWD/qwebsocketframe_p.cpp
HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS