blob: e3d35e40c4fd8a839450efd0c3149ebf9fbea8ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt
index a4451a7..874489d 100644
--- a/src/gui/CMakeLists.txt
+++ b/src/gui/CMakeLists.txt
@@ -97,7 +97,7 @@ add_executable(QMPlay2
)
if(USE_QT5)
- qt5_use_modules(QMPlay2 Gui Widgets Network X11Extras)
+ qt5_use_modules(QMPlay2 Gui Widgets Network)
else()
target_link_libraries(QMPlay2 Qt4::QtGui Qt4::QtCore Qt4::QtNetwork)
endif()
diff --git a/src/modules/XVideo/CMakeLists.txt b/src/modules/XVideo/CMakeLists.txt
index b01e454..02c8747 100644
--- a/src/modules/XVideo/CMakeLists.txt
+++ b/src/modules/XVideo/CMakeLists.txt
@@ -36,7 +36,7 @@ add_library(${PROJECT_NAME} MODULE
)
if(USE_QT5)
- qt5_use_modules(${PROJECT_NAME} Gui Widgets X11Extras)
+ qt5_use_modules(${PROJECT_NAME} Gui Widgets)
else()
target_link_libraries(${PROJECT_NAME} Qt4::QtGui Qt4::QtCore)
endif()
|