UI: Remove dependence on Qt5Network

Qt5Network has been replaced by libcurl.
This commit is contained in:
jp9000
2015-05-23 23:40:15 -07:00
parent 13bed1a448
commit 39d1cda4e9
2 changed files with 1 additions and 5 deletions

View File

@@ -26,9 +26,8 @@ else()
endif()
find_package(Qt5Widgets ${FIND_MODE})
find_package(Qt5Network ${FIND_MODE})
if(NOT Qt5Widgets_FOUND OR NOT Qt5Network_FOUND)
if(NOT Qt5Widgets_FOUND)
if (ENABLE_UI)
message(FATAL_ERROR "Failed to find Qt5")
else()
@@ -206,7 +205,6 @@ target_link_libraries(obs
libobs
libff
Qt5::Widgets
Qt5::Network
${LIBCURL_LIBRARIES}
${obs_PLATFORM_LIBRARIES})