diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-11-27 16:27:20 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-11-27 16:27:20 -0800 |
| commit | d04b0cfcb5a37f5b6b6ba0fbd031bdbad94399b1 (patch) | |
| tree | d7e10617466b3f27f904a4f17fabab7b36069060 /src/supplemental/tcp/CMakeLists.txt | |
| parent | 030fc34314d97874d3e4f209d78277d1f3981a0e (diff) | |
| download | nng-d04b0cfcb5a37f5b6b6ba0fbd031bdbad94399b1.tar.gz nng-d04b0cfcb5a37f5b6b6ba0fbd031bdbad94399b1.tar.bz2 nng-d04b0cfcb5a37f5b6b6ba0fbd031bdbad94399b1.zip | |
fixes #680 Public TCP API
Diffstat (limited to 'src/supplemental/tcp/CMakeLists.txt')
| -rw-r--r-- | src/supplemental/tcp/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/supplemental/tcp/CMakeLists.txt b/src/supplemental/tcp/CMakeLists.txt new file mode 100644 index 00000000..ef82b098 --- /dev/null +++ b/src/supplemental/tcp/CMakeLists.txt @@ -0,0 +1,15 @@ +# +# Copyright 2018 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 +# file was obtained (LICENSE.txt). A copy of the license may also be +# found online at https://opensource.org/licenses/MIT. +# + +set(_SRCS supplemental/tcp/tcp.c + ${PROJECT_SOURCE_DIR}/include/nng/supplemental/tcp/tcp.h +) + +set(NNG_SRCS ${NNG_SRCS} ${_SRCS} PARENT_SCOPE) |
