From e7dd0630a055a0a3c37bedba0f49254bbdb54654 Mon Sep 17 00:00:00 2001 From: Tom Dewey Date: Wed, 31 Jul 2024 13:34:53 +0100 Subject: [PATCH] cmake: Windows: Remove OpenSSL dependency. --- src/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ce36f00..deb9668 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -299,8 +299,6 @@ if (WIN32) # Target Windows 10, in line with Qt requirements add_definitions(-DWINVER=0x0A00 -D_WIN32_WINNT=0x0A00 -DNTDDI_VERION=0x0A000000) - find_package(OpenSSL REQUIRED) - # Bundled fat32format add_subdirectory(dependencies/fat32format) add_dependencies(${PROJECT_NAME} fat32format)