From 16851beabf8153e32c2c96b90e1cbf66642f6c6e Mon Sep 17 00:00:00 2001
From: EndrII <EndrIIMail@gmail.com>
Date: Thu, 3 Nov 2022 22:50:25 +0300
Subject: [PATCH 1/2] disable ssl for windows

---
 CMakeLists.txt | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 434ecd5..fb28446 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -45,7 +45,13 @@ endif()
 
 # Use only for android debug builds with debugging from usb.
 option(HEART_STATIC_SSL "This option enable or disabled static link ssl libraryes" OFF)
-option(HEART_SSL "This option enable or disabled ssl functions of nodes" ON)
+
+if (WIN32)
+    option(HEART_SSL "This option enable or disabled ssl functions of nodes" OFF)
+else()
+    option(HEART_SSL "This option enable or disabled ssl functions of nodes" ON)
+endif()
+
 
 if (HEART_DB_CACHE)
     add_definitions(-DHEART_DB_CACHE)

From 8ee9fddd10bf4abe74fe5a1a85901903e7c5f9a3 Mon Sep 17 00:00:00 2001
From: EndrII <EndrIIMail@gmail.com>
Date: Thu, 3 Nov 2022 22:56:49 +0300
Subject: [PATCH 2/2] added the build shared libs option

---
 CMakeLists.txt | 2 ++
 QuasarAppLib   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index fb28446..10f7b1a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -45,6 +45,8 @@ endif()
 
 # Use only for android debug builds with debugging from usb.
 option(HEART_STATIC_SSL "This option enable or disabled static link ssl libraryes" OFF)
+option(CMAKE_SHARE "This option enable or disabled ssl functions of nodes" OFF)
+option(BUILD_SHARED_LIBS "Enable or disable shared libraryes" OFF)
 
 if (WIN32)
     option(HEART_SSL "This option enable or disabled ssl functions of nodes" OFF)
diff --git a/QuasarAppLib b/QuasarAppLib
index 6f8308d..c492fa2 160000
--- a/QuasarAppLib
+++ b/QuasarAppLib
@@ -1 +1 @@
-Subproject commit 6f8308db6d31b7bd3b3e7eed390de81dc676ca91
+Subproject commit c492fa2fe8b83f93806cc31498af66ee053630ae