Skip to content

Commit

Permalink
GH-2291 Fix build with Qt 5.11+
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Shatunov committed Jun 2, 2018
1 parent f0ff2db commit 4d68c1b
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 14 deletions.
3 changes: 1 addition & 2 deletions api/gui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ set_target_properties(MultiMC_gui PROPERTIES CXX_VISIBILITY_PRESET hidden VISIBI
generate_export_header(MultiMC_gui)

# Link
target_link_libraries(MultiMC_gui MultiMC_iconfix MultiMC_logic)
qt5_use_modules(MultiMC_gui Gui)
target_link_libraries(MultiMC_gui MultiMC_iconfix MultiMC_logic Qt5::Gui)

# Mark and export headers
target_include_directories(MultiMC_gui PUBLIC "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}")
Expand Down
2 changes: 1 addition & 1 deletion api/logic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ generate_export_header(MultiMC_logic)

# Link
target_link_libraries(MultiMC_logic xz-embedded MultiMC_unpack200 systeminfo MultiMC_quazip MultiMC_classparser ${NBT_NAME} ${ZLIB_LIBRARIES})
qt5_use_modules(MultiMC_logic Core Xml Network Concurrent)
target_link_libraries(MultiMC_logic Qt5::Core Qt5::Xml Qt5::Network Qt5::Concurrent)

# Mark and export headers
target_include_directories(MultiMC_logic PUBLIC "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}" PRIVATE "${ZLIB_INCLUDE_DIRS}")
Expand Down
1 change: 1 addition & 0 deletions application/dialogs/NotificationDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "ui_NotificationDialog.h"

#include <QTimerEvent>
#include <QStyle>

NotificationDialog::NotificationDialog(const NotificationChecker::NotificationEntry &entry, QWidget *parent) :
QDialog(parent, Qt::MSWindowsFixedSizeDialogHint | Qt::WindowTitleHint | Qt::CustomizeWindowHint),
Expand Down
1 change: 1 addition & 0 deletions application/pages/global/ExternalToolsPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <QMessageBox>
#include <QFileDialog>
#include <QStandardPaths>
#include <QTabBar>

#include "settings/SettingsObject.h"
#include "tools/BaseProfiler.h"
Expand Down
1 change: 1 addition & 0 deletions application/pages/global/JavaPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <QFileDialog>
#include <QMessageBox>
#include <QDir>
#include <QTabBar>

#include "dialogs/VersionSelectDialog.h"

Expand Down
1 change: 1 addition & 0 deletions application/pages/global/MinecraftPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <QMessageBox>
#include <QDir>
#include <QTabBar>

#include "settings/SettingsObject.h"
#include "MultiMC.h"
Expand Down
1 change: 1 addition & 0 deletions application/pages/global/PasteEEPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <QMessageBox>
#include <QFileDialog>
#include <QStandardPaths>
#include <QTabBar>

#include "settings/SettingsObject.h"
#include "tools/BaseProfiler.h"
Expand Down
2 changes: 2 additions & 0 deletions application/pages/global/ProxyPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#include "ProxyPage.h"
#include "ui_ProxyPage.h"

#include <QTabBar>

#include "settings/SettingsObject.h"
#include "MultiMC.h"

Expand Down
1 change: 1 addition & 0 deletions application/pages/instance/NotesPage.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "NotesPage.h"
#include "ui_NotesPage.h"
#include <QTabBar>

NotesPage::NotesPage(BaseInstance *inst, QWidget *parent)
: QWidget(parent), ui(new Ui::NotesPage), m_inst(inst)
Expand Down
1 change: 1 addition & 0 deletions application/pages/modplatform/ImportPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "dialogs/ProgressDialog.h"
#include "dialogs/NewInstanceDialog.h"
#include <QFileDialog>
#include <QValidator>
#include <InstanceImportTask.h>

class UrlValidator : public QValidator
Expand Down
1 change: 1 addition & 0 deletions application/pages/modplatform/VanillaPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <Filter.h>
#include <Env.h>
#include <InstanceCreationTask.h>
#include <QTabBar>

VanillaPage::VanillaPage(NewInstanceDialog *dialog, QWidget *parent)
: QWidget(parent), dialog(dialog), ui(new Ui::VanillaPage)
Expand Down
5 changes: 2 additions & 3 deletions cmake/UnitTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ message(${TEST_RESOURCE_PATH})
function(add_unit_test name)
set(options "")
set(oneValueArgs DATA)
set(multiValueArgs SOURCES LIBS QT)
set(multiValueArgs SOURCES LIBS)

cmake_parse_arguments(OPT "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )

Expand Down Expand Up @@ -40,8 +40,7 @@ function(add_unit_test name)
endif()
endif()

target_link_libraries(${name}_test ${OPT_LIBS})
qt5_use_modules(${name}_test Test ${OPT_QT})
target_link_libraries(${name}_test Qt5::Test ${OPT_LIBS})

target_include_directories(${name}_test PRIVATE "${TEST_RESOURCE_PATH}/UnitTest/")

Expand Down
2 changes: 1 addition & 1 deletion libraries/LocalPeer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ endif()
add_library(LocalPeer STATIC ${SINGLE_SOURCES})
target_include_directories(LocalPeer PUBLIC include)

qt5_use_modules(LocalPeer Core Network)
target_link_libraries(LocalPeer Qt5::Core Qt5::Network)
3 changes: 1 addition & 2 deletions libraries/classparser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@ add_definitions(-DCLASSPARSER_LIBRARY)

add_library(MultiMC_classparser STATIC ${CLASSPARSER_SOURCES} ${CLASSPARSER_HEADERS})
target_include_directories(MultiMC_classparser PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
target_link_libraries(MultiMC_classparser MultiMC_quazip)
qt5_use_modules(MultiMC_classparser Core)
target_link_libraries(MultiMC_classparser MultiMC_quazip Qt5::Core)
2 changes: 1 addition & 1 deletion libraries/ganalytics/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ include/ganalytics.h
)

add_library(ganalytics STATIC ${ganalytics_SOURCES})
qt5_use_modules(ganalytics Core Gui Network)
target_link_libraries(ganalytics Qt5::Core Qt5::Gui Qt5::Network)
target_include_directories(ganalytics PUBLIC include)
target_link_libraries(ganalytics systeminfo)
2 changes: 1 addition & 1 deletion libraries/iconfix/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ internal/qiconloader_p.h
add_library(MultiMC_iconfix SHARED ${ICONFIX_SOURCES})
target_include_directories(MultiMC_iconfix PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} "${CMAKE_CURRENT_BINARY_DIR}" )

qt5_use_modules(MultiMC_iconfix Core Widgets)
target_link_libraries(MultiMC_iconfix Qt5::Core Qt5::Widgets)

set_target_properties(MultiMC_iconfix PROPERTIES CXX_VISIBILITY_PRESET hidden VISIBILITY_INLINES_HIDDEN 1)
generate_export_header(MultiMC_iconfix)
Expand Down
2 changes: 1 addition & 1 deletion libraries/quazip
Submodule quazip updated 1 files
+2 −4 CMakeLists.txt
2 changes: 1 addition & 1 deletion libraries/rainbow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ add_definitions(-DRAINBOW_LIBRARY)
add_library(MultiMC_rainbow SHARED ${RAINBOW_SOURCES})
target_include_directories(MultiMC_rainbow PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")

qt5_use_modules(MultiMC_rainbow Core Gui)
target_link_libraries(MultiMC_rainbow Qt5::Core Qt5::Gui)

# Install it
install(
Expand Down
2 changes: 1 addition & 1 deletion libraries/systeminfo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ elseif (UNIX)
endif()

add_library(systeminfo STATIC ${systeminfo_SOURCES})
qt5_use_modules(systeminfo Core Gui Network)
target_link_libraries(systeminfo Qt5::Core Qt5::Gui Qt5::Network)
target_include_directories(systeminfo PUBLIC include)

include (UnitTest)
Expand Down

0 comments on commit 4d68c1b

Please sign in to comment.