Skip to content
Snippets Groups Projects
Commit 704e6262 authored by Martin Schultz's avatar Martin Schultz
Browse files

added warning messages to CMakeLists.txt regarding Qt 5.8.0 and 5.7.1 on

OSX and potential GLErrors
parent 15593ff8
No related branches found
No related tags found
1 merge request!30Solve gl error on osx qt58 and57
......@@ -79,6 +79,14 @@ if (NOT QT5_FOUND)
message(FATAL_ERROR "Could not found any QT Version. Please specify QT5_INSTALL_PATH (path to bin and include dir) to build with QT5")
endif()
# display warnings if a problematic qt version is used
if ( APPLE )
if ( ${Qt5Core_VERSION_STRING} STREQUAL "5.8.0" OR ${Qt5Core_VERSION_STRING} STREQUAL "5.7.1" )
message(WARNING "You are using a Qt Version that might cause problems on OSX regarding GLErrors. We recommend you to use another version. If you fix any GLErrors on these versions feel free to contribute to OpenFlipper.")
endif()
endif()
if ( WIN32 )
OPTION(USE_UNSUPPORTED_QT "Build OpenFlipper with an unsupported version of Qt e.g. if you fixed the moc issue on 5.8.0 yourself" OFF)
if ( ${Qt5Core_VERSION_STRING} STREQUAL "5.8.0" )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment