github: cmake suddenly defaults to ninja, explicitly define VS as generator
[awesomized/libmemcached] / CMakeConfig.txt
index 608de5618ea21f01a3567a029b8873cebc643200..d8afcaefc3ceae4cee6a09a0eacb45d0eb0b67e4 100644 (file)
@@ -20,7 +20,7 @@ endif()
 if(${CMAKE_VERSION} VERSION_LESS "3.12")
     set(TARGET_NAMELINK_COMPONENT "")
 else()
-    set(TARGET_NAMELINK_COMPONENT NAMELINK_COMPONENT dev)
+    set(TARGET_NAMELINK_COMPONENT NAMELINK_COMPONENT dev DESTINATION ${CMAKE_INSTALL_LIBDIR})
 endif()
 
 option(BUILD_TESTING        "whether to enable build of the test suite"
@@ -65,6 +65,9 @@ if(NOT DEFINED ENV{ENABLE_MEMASLAP})
 endif()
 option(ENABLE_MEMASLAP      "enable memaslap client"
        $ENV{ENABLE_MEMASLAP})
+option(ENABLE_OPENSSL_CRYPTO
+                            "enable OpenSSL's libcrypto instead of bundled AES implementation"
+       $ENV{ENABLE_OPENSSL_CRYPTO})
 
 if(BUILD_TESTING)
     set(MEMCACHED_BINARY "$ENV{MEMCACHED_BINARY}"