summaryrefslogtreecommitdiff
blob: 7a706a084d0b2b6036a600d45dc81808fee52071 (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
27
28
29
30
31
--- a/src/gui/CMakeLists.txt	2018-05-11 23:30:26.425509147 +0200
+++ b/src/gui/CMakeLists.txt	2018-05-11 23:31:53.237354182 +0200
@@ -39,7 +39,7 @@
     target_link_libraries (synergy dns_sd)
 endif()
 
-qt5_use_modules (synergy Core Widgets Network)
+target_link_libraries (synergy Qt5::Core Qt5::Widgets Qt5::Network)
 target_compile_definitions (synergy PRIVATE -DSYNERGY_VERSION_STAGE="${SYNERGY_VERSION_STAGE}")
 target_compile_definitions (synergy PRIVATE -DSYNERGY_REVISION="${SYNERGY_REVISION}")
 
--- a/src/gui/src/ActionDialog.cpp	2018-04-10 12:18:42.000000000 +0200
+++ b/src/gui/src/ActionDialog.cpp	2018-05-11 23:33:50.814498692 +0200
@@ -25,6 +25,7 @@
 
 #include <QtCore>
 #include <QtGui>
+#include <QButtonGroup>
 
 ActionDialog::ActionDialog(QWidget* parent, ServerConfig& config, Hotkey& hotkey, Action& action) :
     QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint),
--- a/src/gui/src/ScreenSetupView.cpp	2018-04-10 12:18:42.000000000 +0200
+++ b/src/gui/src/ScreenSetupView.cpp	2018-05-11 23:35:33.304496343 +0200
@@ -22,6 +22,7 @@
 
 #include <QtCore>
 #include <QtGui>
+#include <QHeaderView>
 
 ScreenSetupView::ScreenSetupView(QWidget* parent) :
     QTableView(parent)