diff --git a/CMakeLists.txt b/CMakeLists.txt index 110a7900e..122be9b92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -618,6 +618,13 @@ IF(OSG_USE_QT AND NOT ANDROID) #If we have found Qt5, let's try to top off by getting the webkit as well IF ( Qt5Widgets_FOUND ) FIND_PACKAGE(Qt5WebKitWidgets QUIET) + + IF(COMMAND cmake_policy) + IF(${CMAKE_MAJOR_VERSION} GREATER 2) + # Qt5 qt5_use_modules usage was causing "Policy CMP0043 is not set: Ignore COMPILE_DEFINITIONS_ properties." warnings + cmake_policy(SET CMP0043 NEW) + ENDIF() + ENDIF() ENDIF() ENDIF()