aboutsummaryrefslogtreecommitdiff
path: root/src/supplemental/CMakeLists.txt
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-01-06 19:22:56 -0800
committerGarrett D'Amore <garrett@damore.org>2024-01-06 19:36:02 -0800
commitf4908daaaad443834d9f270e7ddc5e2e23d0f7a5 (patch)
treed98f33bda4eff47a6561f6fdebe23b9d3909e178 /src/supplemental/CMakeLists.txt
parentd7e0072a8ef453d6fd06311f6253ba869977e214 (diff)
downloadnng-f4908daaaad443834d9f270e7ddc5e2e23d0f7a5.tar.gz
nng-f4908daaaad443834d9f270e7ddc5e2e23d0f7a5.tar.bz2
nng-f4908daaaad443834d9f270e7ddc5e2e23d0f7a5.zip
fix idhash not public
We accidentally made idhash not public by not publishing its header in the right place. This is really generic utility stuff, so we have posted it in the nng/supplemental/util/ directory. We've also removed the ability to remove this -- its a very small amount of additional code, as its just a wrapper on top of mandatory functionality.
Diffstat (limited to 'src/supplemental/CMakeLists.txt')
-rw-r--r--src/supplemental/CMakeLists.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/supplemental/CMakeLists.txt b/src/supplemental/CMakeLists.txt
index 3fa254e7..2dcf228e 100644
--- a/src/supplemental/CMakeLists.txt
+++ b/src/supplemental/CMakeLists.txt
@@ -1,5 +1,5 @@
#
-# Copyright 2021 Staysail Systems, Inc. <info@staystail.tech>
+# Copyright 2024 Staysail Systems, Inc. <info@staystail.tech>
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
@@ -11,8 +11,7 @@ nng_directory(supplemental)
add_subdirectory(base64)
add_subdirectory(http)
-add_subdirectory(idhash)
add_subdirectory(sha1)
add_subdirectory(tls)
add_subdirectory(util)
-add_subdirectory(websocket) \ No newline at end of file
+add_subdirectory(websocket)