mirror of https://github.com/mgba-emu/mgba.git
Qt: Add more missing references to Qt5::Network
This commit is contained in:
parent
4a3d9d2252
commit
6b2eaed35a
|
@ -32,6 +32,7 @@ if(NOT WIN32 OR NOT BUILD_SDL)
|
|||
find_package(Qt5Multimedia)
|
||||
endif()
|
||||
find_package(Qt5OpenGL)
|
||||
find_package(Qt5Network)
|
||||
find_package(Qt5Widgets)
|
||||
|
||||
if(NOT BUILD_GL AND NOT BUILD_GLES2)
|
||||
|
@ -40,7 +41,7 @@ if(NOT BUILD_GL AND NOT BUILD_GLES2)
|
|||
return()
|
||||
endif()
|
||||
|
||||
if(NOT Qt5OpenGL_FOUND OR NOT Qt5Widgets_FOUND)
|
||||
if(NOT Qt5OpenGL_FOUND OR NOT Qt5Widgets_FOUND OR NOT Qt5Network_FOUND)
|
||||
message(WARNING "Cannot find Qt modules")
|
||||
set(BUILD_QT OFF PARENT_SCOPE)
|
||||
return()
|
||||
|
|
Loading…
Reference in New Issue