comparison CMakeLists.txt @ 950:9fcb0038fe0a

irccd: bring SSL support back
author David Demelier <markand@malikania.fr>
date Sat, 16 Jan 2021 23:23:31 +0100
parents 21a91311c8ea
children 5e682f1cebcc
comparison
equal deleted inserted replaced
949:b4e8551e2064 950:9fcb0038fe0a
35 set(CMAKE_C_FLAGS "-Wall -Wextra") 35 set(CMAKE_C_FLAGS "-Wall -Wextra")
36 endif () 36 endif ()
37 37
38 include(GNUInstallDirs) 38 include(GNUInstallDirs)
39 39
40 if (IRCCD_WITH_SSL)
41 find_package(OpenSSL REQUIRED)
42 endif ()
43
40 add_subdirectory(extern/libcompat) 44 add_subdirectory(extern/libcompat)
41 45
42 if (IRCCD_WITH_JS) 46 if (IRCCD_WITH_JS)
43 add_subdirectory(extern/libduktape) 47 add_subdirectory(extern/libduktape)
44 endif () 48 endif ()