Skip to content

Commit

Permalink
minimum Qt required 5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Nov 19, 2021
1 parent 47efc89 commit 4db57f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ find_package(
Qt5
COMPONENTS OpenGL Xml Network
REQUIRED)
if (Qt5_VERSION VERSION_LESS 5.12.0)
message(FATAL_ERROR "Minimum supported Qt5 version is 5.12!")
if (Qt5_VERSION VERSION_LESS 5.15.0)
message(FATAL_ERROR "Minimum supported Qt5 version is 5.15!")
endif()
find_package(OpenMP)

Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The source code of MeshLab is structured in the following directories:

## Build MeshLab

MeshLab builds with the three major compilers: `gcc`, `clang`, and `msvc`. It requires [Qt](https://www.qt.io/) >= 5.12.
MeshLab builds with the three major compilers: `gcc`, `clang`, and `msvc`. It requires [Qt](https://www.qt.io/) >= 5.15.

After setting up the Qt environment:

Expand Down

0 comments on commit 4db57f5

Please sign in to comment.