diff options
Diffstat (limited to 'src/crypto/cipher/CMakeLists.txt')
-rw-r--r-- | src/crypto/cipher/CMakeLists.txt | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/src/crypto/cipher/CMakeLists.txt b/src/crypto/cipher/CMakeLists.txt index a9d9abe..ff67b82 100644 --- a/src/crypto/cipher/CMakeLists.txt +++ b/src/crypto/cipher/CMakeLists.txt @@ -23,15 +23,30 @@ macro(fastd_cipher_impl cipher name) endmacro(fastd_cipher_impl) macro(fastd_cipher_impl_include_directories cipher name) - fastd_module_include_directories(cipher "${cipher} ${name}" ${ARGN}) + string(REPLACE - _ cipher_ "${cipher}") + string(TOUPPER "${cipher_}" CIPHER) + + if(WITH_CIPHER_${CIPHER}) + fastd_module_include_directories(cipher "${cipher} ${name}" ${ARGN}) + endif(WITH_CIPHER_${CIPHER}) endmacro(fastd_cipher_impl_include_directories) macro(fastd_cipher_impl_link_libraries cipher name) - fastd_module_link_libraries(cipher "${cipher} ${name}" ${ARGN}) + string(REPLACE - _ cipher_ "${cipher}") + string(TOUPPER "${cipher_}" CIPHER) + + if(WITH_CIPHER_${CIPHER}) + fastd_module_link_libraries(cipher "${cipher} ${name}" ${ARGN}) + endif(WITH_CIPHER_${CIPHER}) endmacro(fastd_cipher_impl_link_libraries) macro(fastd_cipher_impl_require cipher name) - fastd_module_require(cipher "${cipher} ${name}" ${ARGN}) + string(REPLACE - _ cipher_ "${cipher}") + string(TOUPPER "${cipher_}" CIPHER) + + if(WITH_CIPHER_${CIPHER}) + fastd_module_require(cipher "${cipher} ${name}" ${ARGN}) + endif(WITH_CIPHER_${CIPHER}) endmacro(fastd_cipher_impl_require) |