Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ set(LIBNAT20_SOURCES
# Add the core library source files here.
src/core/asn1.c
src/core/cbor.c
src/core/cose.c
src/core/cwt.c
src/core/functionality.c
src/core/oid.c
src/core/stream.c
Expand All @@ -110,6 +112,8 @@ set(LIBNAT20_PUB_HEADERS
include/nat20/asn1.h
include/nat20/cbor.h
include/nat20/constants.h
include/nat20/cose.h
include/nat20/cwt.h
include/nat20/crypto.h
include/nat20/endian.h
include/nat20/error.h
Expand Down Expand Up @@ -147,6 +151,8 @@ set(LIBNAT20_TEST_SOURCES
# Add test source files here.
src/core/test/asn1.cpp
src/core/test/cbor.cpp
src/core/test/cose.cpp
src/core/test/cwt.cpp
src/core/test/functionality.cpp
src/core/test/oid.cpp
src/core/test/stream.cpp
Expand Down
Loading