diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-04 12:18:35 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-04 12:18:35 +0200 |
| commit | 4f2c980343b321e7fccf48190c32bfb4bca426f4 (patch) | |
| tree | e08d299dc9da1976c8924207f9cbfbc8bd06709a /libcmix-crypto/curve25519 | |
| parent | ad3d46b0b6ca285bbaf1540e9805714addfeb9af (diff) | |
| download | cmix-4f2c980343b321e7fccf48190c32bfb4bca426f4.tar.gz cmix-4f2c980343b321e7fccf48190c32bfb4bca426f4.tar.bz2 cmix-4f2c980343b321e7fccf48190c32bfb4bca426f4.zip | |
Added a bignum library to abstract possible implementations.
Diffstat (limited to 'libcmix-crypto/curve25519')
| -rw-r--r-- | libcmix-crypto/curve25519/CMakeLists.txt | 5 |
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} ) |
