comparison Resources/CMake/DatabasesFrameworkConfiguration.cmake @ 358:1280b40d6696

switch to OpenSSL 3.0.x
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Feb 2022 09:27:40 +0100
parents 2592c0e9b724
children 16aac0287485
comparison
equal deleted inserted replaced
355:0513c1b7988b 358:1280b40d6696
27 endif() 27 endif()
28 28
29 if (ENABLE_POSTGRESQL_BACKEND) 29 if (ENABLE_POSTGRESQL_BACKEND)
30 set(ENABLE_CRYPTO_OPTIONS ON) 30 set(ENABLE_CRYPTO_OPTIONS ON)
31 set(ENABLE_ZLIB ON) 31 set(ENABLE_ZLIB ON)
32 32 set(ENABLE_OPENSSL_ENGINES ON)
33 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
34 set(ENABLE_OPENSSL_ENGINES ON)
35 endif()
36 endif() 33 endif()
37 34
38 if (ENABLE_MYSQL_BACKEND) 35 if (ENABLE_MYSQL_BACKEND)
39 set(ENABLE_CRYPTO_OPTIONS ON) 36 set(ENABLE_CRYPTO_OPTIONS ON)
40 set(ENABLE_SSL ON) 37 set(ENABLE_SSL ON)
41 set(ENABLE_ZLIB ON) 38 set(ENABLE_ZLIB ON)
42 set(ENABLE_LOCALE ON) # iconv is needed 39 set(ENABLE_LOCALE ON) # iconv is needed
43 set(ENABLE_WEB_CLIENT ON) # libcurl is needed 40 set(ENABLE_WEB_CLIENT ON) # libcurl is needed
44 41 set(ENABLE_OPENSSL_ENGINES ON)
45 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
46 set(ENABLE_OPENSSL_ENGINES ON)
47 endif()
48 endif() 42 endif()
49 43
50 if (ENABLE_ODBC_BACKEND) 44 if (ENABLE_ODBC_BACKEND)
51 endif() 45 endif()
52 46