Initialize GKCrypt

This commit is contained in:
Florian Märkl 2018-11-26 19:43:59 +01:00
commit fb4f357620
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
5 changed files with 137 additions and 5 deletions

View file

@ -14,7 +14,8 @@ set(HEADER_FILES
include/chiaki/mirai.h
include/chiaki/ecdh.h
include/chiaki/launchspec.h
include/chiaki/random.h)
include/chiaki/random.h
include/chiaki/gkcrypt.h)
set(SOURCE_FILES
src/common.c
@ -33,7 +34,8 @@ set(SOURCE_FILES
src/mirai.c
src/ecdh.c
src/launchspec.c
src/random.c)
src/random.c
src/gkcrypt.c)
add_subdirectory(protobuf)
include_directories("${NANOPB_SOURCE_DIR}")