1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-10-19 21:36:47 +02:00

Remove compile requirement for boost::system

boost::system is not a dependency for our project.
This commit is contained in:
Chocobo1 2020-09-18 13:54:57 +08:00
parent 7fed0391ba
commit 6880e03145
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -32,7 +32,7 @@ else()
endif()
# force variable type so that it always shows up in ccmake/cmake-gui frontends
set_property(CACHE LibtorrentRasterbar_DIR PROPERTY TYPE PATH)
find_package(Boost ${requiredBoostVersion} REQUIRED COMPONENTS system)
find_package(Boost ${requiredBoostVersion} REQUIRED)
find_package(OpenSSL ${requiredOpenSSLVersion} REQUIRED)
find_package(ZLIB ${requiredZlibVersion} REQUIRED)
find_package(Qt5 ${requiredQtVersion} REQUIRED COMPONENTS Core Network Xml LinguistTools)