4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-11 18:29:33 +00:00

Enable the NSS and Botan providers.

svn path=/trunk/kdesupport/qca/; revision=609821
This commit is contained in:
Brad Hards 2006-12-02 11:47:53 +00:00
parent 4040283cbb
commit 58ce01231b

@ -3,6 +3,7 @@ FIND_PACKAGE(OpenSSL)
find_package(Sasl2)
FIND_PACKAGE(Nss)
FIND_PACKAGE(LibGcrypt)
FIND_PACKAGE(Botan)
IF (OPENSSL_FOUND)
ADD_SUBDIRECTORY(qca-openssl)
@ -24,17 +25,19 @@ if(SASL2_FOUND)
#add_subdirectory(qca-cyrus-sasl)
endif(SASL2_FOUND)
#if(BOTAN_FOUND)
# ADD_SUBDIRECTORY(qca-botan)
#endif(BOTAN_FOUND)
if(BOTAN_FOUND)
MESSAGE(STATUS "Botan plugin enabled")
ADD_SUBDIRECTORY(qca-botan)
endif(BOTAN_FOUND)
if(LIBGCRYPT_FOUND)
MESSAGE(STATUS "libgcrypt plugin enabled")
ADD_SUBDIRECTORY(qca-gcrypt)
endif(LIBGCRYPT_FOUND)
#if(NSS_FOUND)
# ADD_SUBDIRECTORY(qca-nss)
#endif(NSS_FOUND)
if(NSS_FOUND)
MESSAGE(STATUS "NSS plugin enabled")
ADD_SUBDIRECTORY(qca-nss)
endif(NSS_FOUND)