diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-12-05 14:22:45 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-12-26 12:48:45 -0800 |
| commit | 21dec54769b2d8d80e57765b345af5d092639376 (patch) | |
| tree | f1e029ff061335d01eecc45f4d4c2b08699eee07 /src/supplemental/sha1/CMakeLists.txt | |
| parent | 0bcb57e8581b35c8d1d49284abdb0720607c818b (diff) | |
| download | nng-21dec54769b2d8d80e57765b345af5d092639376.tar.gz nng-21dec54769b2d8d80e57765b345af5d092639376.tar.bz2 nng-21dec54769b2d8d80e57765b345af5d092639376.zip | |
Added SHA1 implementation and test suite.
Diffstat (limited to 'src/supplemental/sha1/CMakeLists.txt')
| -rw-r--r-- | src/supplemental/sha1/CMakeLists.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/supplemental/sha1/CMakeLists.txt b/src/supplemental/sha1/CMakeLists.txt new file mode 100644 index 00000000..8496777b --- /dev/null +++ b/src/supplemental/sha1/CMakeLists.txt @@ -0,0 +1,12 @@ +# +# Copyright 2017 Capitar IT Group BV <info@capitar.com> +# Copyright 2017 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(SHA1_SOURCES supplemental/sha1/sha1.c supplemental/sha1/sha1.h) +set(NNG_SOURCES ${NNG_SOURCES} ${SHA1_SOURCES} PARENT_SCOPE) |
