1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 19:57:45 +00:00

Remove mbedtls dependency

This commit is contained in:
redstrate 2021-11-09 21:08:46 -05:00
parent 6c5fc7c6c2
commit 78c0bc3d60
2 changed files with 2 additions and 10 deletions

View file

@ -19,7 +19,7 @@ add_executable(xivlauncher
src/settingswindow.cpp
src/blowfish.cpp)
target_link_libraries(xivlauncher Qt6::Core Qt6::Widgets Qt6::Network qt6keychain mbedtls)
target_link_libraries(xivlauncher Qt6::Core Qt6::Widgets Qt6::Network qt6keychain)
# disgusting, thanks qtkeychain
target_include_directories(xivlauncher PRIVATE

View file

@ -10,11 +10,3 @@ set(BUILD_WITH_QT6 ON CACHE BOOL "" FORCE)
set(QTKEYCHAIN_STATIC ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(qtkeychain)
FetchContent_Declare(
mbedtls
GIT_REPOSITORY https://github.com/ARMmbed/mbedtls.git
GIT_TAG v2.27.0 # last version with blowfish support
)
FetchContent_MakeAvailable(mbedtls)