aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/curve25519
diff options
context:
space:
mode:
Diffstat (limited to 'libcmix-crypto/curve25519')
-rw-r--r--libcmix-crypto/curve25519/CMakeLists.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/libcmix-crypto/curve25519/CMakeLists.txt b/libcmix-crypto/curve25519/CMakeLists.txt
index afcc1b4..847c26c 100644
--- a/libcmix-crypto/curve25519/CMakeLists.txt
+++ b/libcmix-crypto/curve25519/CMakeLists.txt
@@ -1,4 +1,3 @@
-
add_library(curve25519-interface INTERFACE)
target_include_directories(curve25519-interface
@@ -13,7 +12,7 @@ target_link_libraries(curve25519-interface
INTERFACE cmix-crypto-interface
)
-foreach(impl ${curve25519_implementations})
+foreach(impl ${libcmix_crypto_curve25519_implementations})
add_subdirectory(${impl})
endforeach()
@@ -27,7 +26,7 @@ target_include_directories(curve25519-implementation
target_link_libraries(curve25519-implementation
PUBLIC curve25519-interface
- PUBLIC curve25519-${curve25519_implementation}
+ PUBLIC curve25519-${libcmix_crypto_curve25519_implementation}
)