mirror of https://github.com/mgba-emu/mgba.git
Qt: Remove QtNetwork dependency
This commit is contained in:
parent
ea1c857351
commit
e1c158c49a
|
@ -32,7 +32,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|||
|
||||
find_package(Qt5Multimedia)
|
||||
find_package(Qt5OpenGL)
|
||||
find_package(Qt5Network)
|
||||
find_package(Qt5Widgets)
|
||||
|
||||
if(NOT BUILD_GL AND NOT BUILD_GLES2)
|
||||
|
@ -41,7 +40,7 @@ if(NOT BUILD_GL AND NOT BUILD_GLES2)
|
|||
return()
|
||||
endif()
|
||||
|
||||
if(NOT Qt5OpenGL_FOUND OR NOT Qt5Widgets_FOUND OR NOT Qt5Network_FOUND)
|
||||
if(NOT Qt5OpenGL_FOUND OR NOT Qt5Widgets_FOUND)
|
||||
message(WARNING "Cannot find Qt modules")
|
||||
set(BUILD_QT OFF PARENT_SCOPE)
|
||||
return()
|
||||
|
|
Loading…
Reference in New Issue