Skip to content

Commit

Permalink
Merge pull request #272 from mattyjams/pr/specify_qt_min_version
Browse files Browse the repository at this point in the history
identify Qt 5.12 as the minimum required version for Qt-dependent features
  • Loading branch information
Krystian Ligenza authored Feb 12, 2020
2 parents 00f4e95 + 44e597f commit fbb9393
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ endif()

if(DEFINED QT_LOCATION)
set(CMAKE_PREFIX_PATH "${QT_LOCATION}")
find_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)
find_package(Qt5 5.12 COMPONENTS Core Gui Widgets REQUIRED)
if(Qt5_FOUND)
message(STATUS "Building with Qt features enabled.")
endif()
Expand Down
8 changes: 7 additions & 1 deletion doc/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ Before building the project, consult the following table to ensure you use the r
| Python Packages | PyYAML, PySide, PyOpenGL, Jinja2 | PyYAML, PySide2, PyOpenGL, Jinja2 | PyYAML, PySide, PyOpenGL, Jinja2 |
| Build generator | Visual Studio, Ninja (Recommended) | XCode, Ninja(Recommended) | Ninja(Recommended) |
| Command processor | Visual Studio X64 2015 or 2017 command prompt | bash | bash |
| Supported Maya Version| 2018, 2019, 2020 | 2018, 2019, 2020 | 2018,2019, 2020 |
| Supported Maya Version| 2018, 2019, 2020 | 2018, 2019, 2020 | 2018, 2019, 2020 |

| Optional | ![](images/windows.png) | ![](images/mac.png) | ![](images/linux.png) |
|:---------------------:|:-------------------------:|:------------------------------------------------------------:|:---------------------------:|
| Qt | 5.12.6 | 5.12.6 | 5.12.6 |

***NOTE:*** The optional Qt features require building with Qt version 5.12.6, which is the version used by Maya 2020. They are not supported with Maya 2018 and 2019 since those versions of Maya use Qt 5.6.1.

***NOTE:*** We haven't fully tested the plug-ins on ```Catalina``` and it is still at the experimental stage.

Expand Down

0 comments on commit fbb9393

Please sign in to comment.