aboutsummaryrefslogtreecommitdiff
path: root/src/supplemental/websocket/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/supplemental/websocket/CMakeLists.txt')
-rw-r--r--src/supplemental/websocket/CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/supplemental/websocket/CMakeLists.txt b/src/supplemental/websocket/CMakeLists.txt
index 913544dd..74438cd5 100644
--- a/src/supplemental/websocket/CMakeLists.txt
+++ b/src/supplemental/websocket/CMakeLists.txt
@@ -1,6 +1,6 @@
#
+# Copyright 2019 Staysail Systems, Inc. <info@staysail.tech>
# Copyright 2017 Capitar IT Group BV <info@capitar.com>
-# Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
@@ -9,10 +9,7 @@
#
if (NNG_SUPP_WEBSOCKET)
- set(_SRCS
- supplemental/websocket/websocket.c
- supplemental/websocket/websocket.h)
+ nng_sources(websocket.c websocket.h)
else()
- set(_SRCS supplemental/websocket/stub.c)
+ nng_sources(stub.c)
endif()
-set(NNG_SRCS ${NNG_SRCS} ${_SRCS} PARENT_SCOPE)