Skip to content

Commit

Permalink
Update Qt to 6.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed May 28, 2023
1 parent 315cbc6 commit 638c8a2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ on:

env:
OGDF_VERSION: dogwood-202202
QT_VERSION: 6.4.3
QT_VERSION: 6.5.1

jobs:
# Check if the template.pot file is up to date. Run this as a separate job
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -6,7 +6,7 @@ on:

env:
OGDF_VERSION: dogwood-202202
QT_VERSION: 6.4.3
QT_VERSION: 6.5.1

jobs:
create_release:
Expand Down
16 changes: 8 additions & 8 deletions CMakeLists.txt
Expand Up @@ -602,21 +602,21 @@ else()
libicuuc.so.56
libicuuc.so.56.1
libQt6Core.so.6
libQt6Core.so.6.4.3
libQt6Core.so.6.5.1
libQt6DBus.so.6
libQt6DBus.so.6.4.3
libQt6DBus.so.6.5.1
libQt6Gui.so.6
libQt6Gui.so.6.4.3
libQt6Gui.so.6.5.1
libQt6Network.so.6
libQt6Network.so.6.4.3
libQt6Network.so.6.5.1
libQt6Test.so.6
libQt6Test.so.6.4.3
libQt6Test.so.6.5.1
libQt6Widgets.so.6
libQt6Widgets.so.6.4.3
libQt6Widgets.so.6.5.1
libQt6XcbQpa.so.6
libQt6XcbQpa.so.6.4.3
libQt6XcbQpa.so.6.5.1
libQt6OpenGL.so.6
libQt6OpenGL.so.6.4.3)
libQt6OpenGL.so.6.5.1)

foreach(TEST_RESOURCE ${LOOT_QT_TEST_RESOURCES})
add_custom_command(TARGET loot_gui_tests POST_BUILD
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -56,7 +56,7 @@ Parameter | Values | Default |Description
`LIBLOOT_URL` | A URL | A GitHub release archive URL | The URL to get the libloot release archive from. By default, this is the URL of a libloot release archive hosted on GitHub. Specifying this is useful if you want to link to a libloot that was built and packaged locally.
`RUN_CLANG_TIDY` | `ON`, `OFF` | `OFF` | Whether or not to run clang-tidy during build. Has no effect when using CMake's MSVC generator.

You may also need to set `BOOST_ROOT` if CMake cannot find Boost, and `Qt6_ROOT` (e.g. to `C:/Qt/6.4.3/msvc2019_64`) if CMake cannot find Qt.
You may also need to set `BOOST_ROOT` if CMake cannot find Boost, and `Qt6_ROOT` (e.g. to `C:/Qt/6.5.1/msvc2019_64`) if CMake cannot find Qt.

## Building The Documentation

Expand Down
14 changes: 7 additions & 7 deletions scripts/archive.py
Expand Up @@ -76,21 +76,21 @@ def copy_qt_resources(executable_path, output_path, qt_root_path):
'libicuuc.so.56',
'libicuuc.so.56.1',
'libQt6Core.so.6',
'libQt6Core.so.6.4.3',
'libQt6Core.so.6.5.1',
'libQt6DBus.so.6',
'libQt6DBus.so.6.4.3',
'libQt6DBus.so.6.5.1',
'libQt6Gui.so.6',
'libQt6Gui.so.6.4.3',
'libQt6Gui.so.6.5.1',
'libQt6Network.so.6',
'libQt6Network.so.6.4.3',
'libQt6Network.so.6.5.1',
'libQt6Widgets.so.6',
'libQt6Widgets.so.6.4.3',
'libQt6Widgets.so.6.5.1',

# For xcb platform plugin.
'libQt6XcbQpa.so.6',
'libQt6XcbQpa.so.6.4.3',
'libQt6XcbQpa.so.6.5.1',
'libQt6OpenGL.so.6',
'libQt6OpenGL.so.6.4.3'
'libQt6OpenGL.so.6.5.1'
]

for library in libraries:
Expand Down

0 comments on commit 638c8a2

Please sign in to comment.