aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libcmix-crypto/CMakeLists.txt')
-rw-r--r--libcmix-crypto/CMakeLists.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/libcmix-crypto/CMakeLists.txt b/libcmix-crypto/CMakeLists.txt
index 3bbbae6..1be60dc 100644
--- a/libcmix-crypto/CMakeLists.txt
+++ b/libcmix-crypto/CMakeLists.txt
@@ -1,6 +1,7 @@
add_library(cmix-crypto
message.h message.c
+ keymanagement.h keymanagement.c
)
target_include_directories(cmix-crypto
@@ -8,5 +9,13 @@ target_include_directories(cmix-crypto
)
target_compile_options(cmix-crypto
- PUBLIC "-std=c99"
-) \ No newline at end of file
+ PRIVATE "-std=c99"
+)
+
+add_library(libsodium_curve25519
+ libsodium_curve25519.c
+)
+
+target_link_libraries(cmix-crypto
+ PUBLIC libsodium_curve25519
+)