diff options
Diffstat (limited to 'src/crypto/cipher/aes128_ctr/CMakeLists.txt')
-rw-r--r-- | src/crypto/cipher/aes128_ctr/CMakeLists.txt | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/crypto/cipher/aes128_ctr/CMakeLists.txt b/src/crypto/cipher/aes128_ctr/CMakeLists.txt index 6237a7c..16eeeab 100644 --- a/src/crypto/cipher/aes128_ctr/CMakeLists.txt +++ b/src/crypto/cipher/aes128_ctr/CMakeLists.txt @@ -1,18 +1,2 @@ -set(IMPLS "") - -if(WITH_CIPHER_AES128_CTR_NACL) - list(APPEND IMPLS nacl) -endif(WITH_CIPHER_AES128_CTR_NACL) - -set(IMPL_SOURCES "") - -foreach(impl ${IMPLS}) - add_subdirectory(${impl}) - - list(APPEND IMPL_SOURCES $<TARGET_OBJECTS:cipher_aes128_ctr_${impl}>) -endforeach(impl) - - -set(CIPHER_NAME "aes128-ctr" PARENT_SCOPE) -set(IMPLS "${IMPLS}" PARENT_SCOPE) -set(IMPL_SOURCES "${IMPL_SOURCES}" PARENT_SCOPE) +fastd_cipher(aes128-ctr) +add_subdirectory(nacl) |