Skip to content

Commit

Permalink
Update to Qt 6.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Oct 10, 2023
1 parent 8e95aca commit 83813ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build
on: [push, pull_request]
env:
QT_VERSION: 6.5.2
QT_VERSION: 6.6.0
QT_MODULES: qtwebengine qtwebchannel qtpositioning
GCC_VERSION: 11
CLANG_VERSION: 14
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ else()
endif()

find_package(Qt6 COMPONENTS REQUIRED Core)
if(Qt6Core_VERSION VERSION_LESS 6.5.2)
message(FATAL_ERROR "Qt 6.5.2 or later required")
if(Qt6Core_VERSION VERSION_LESS 6.6.0)
message(FATAL_ERROR "Qt 6.6.0 or later required")
endif()

include_directories(source)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ cmake -B build && cmake --build build --parallel
```
Note however that you will usually also need Qt 6 to be installed and indicate to CMake where it lives:
```
CMAKE_PREFIX_PATH=/example/path/to/Qt/6.5.2/gcc_64/ cmake -B build && cmake --build build --parallel
CMAKE_PREFIX_PATH=/example/path/to/Qt/6.6.0/gcc_64/ cmake -B build && cmake --build build --parallel
```

0 comments on commit 83813ee

Please sign in to comment.