1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-22 10:42:29 +01:00

Fix dependencies

This commit is contained in:
Elias Steurer 2020-09-18 17:44:03 +02:00
parent 3113cff59b
commit 2a3c29a0cc
3 changed files with 2 additions and 9 deletions

View File

@ -18,13 +18,9 @@ find_package(
LinguistTools
REQUIRED)
find_package(ZLIB REQUIRED)
find_package(OpenSSL REQUIRED)
find_package(libzippp CONFIG REQUIRED)
find_package(sentry CONFIG REQUIRED)
set(src main.cpp
app.cpp
../Common/qt-google-analytics/ganalytics.cpp
@ -104,7 +100,6 @@ target_link_libraries(${PROJECT_NAME}
Qt5::Widgets
Qt5::Core
Qt5::WebEngine
libzippp::libzippp
sentry::sentry
ScreenPlaySDK
)

View File

@ -58,7 +58,7 @@
#include <optional>
#include "globalvariables.h"
#include "libzippp.h"
namespace ScreenPlay {
@ -144,8 +144,6 @@ public slots:
emit debugMessagesChanged(m_debugMessages);
}
private:
bool saveExtractedByteArray(libzippp::ZipEntry& entry, std::string& absolutePathAndName);
private:
QNetworkAccessManager* m_networkAccessManager { nullptr };

View File

@ -9,7 +9,7 @@ git checkout 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
call bootstrap-vcpkg.bat
rem Install vcpkg dependencies
vcpkg.exe install openssl --triplet x64-windows --recurse
vcpkg.exe install openssl sentry-native --triplet x64-windows --recurse
cd ..
cd ..