From 6b0f5b9346d90e8da0c3d9fa4357654fb145af15 Mon Sep 17 00:00:00 2001 From: Fabien Givors Date: Fri, 11 May 2018 14:15:51 +0200 Subject: [PATCH] Edit CMakeLists to use qt5 --- PianoBooster/src/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PianoBooster/src/CMakeLists.txt b/PianoBooster/src/CMakeLists.txt index c8ed266..b2fecf8 100644 --- a/PianoBooster/src/CMakeLists.txt +++ b/PianoBooster/src/CMakeLists.txt @@ -36,12 +36,12 @@ SET(QT_USE_QTXML TRUE) FIND_PACKAGE( OpenGL REQUIRED ) -# this command finds Qt4 libraries and sets all required variables -# note that it's Qt4, not QT4 or qt4 -FIND_PACKAGE( Qt4 REQUIRED ) +# this command finds Qt5 libraries and sets all required variables +# note that it's Qt5, not QT5 or qt5 +FIND_PACKAGE( Qt5 REQUIRED ) # add some useful macros and variables -# (QT_USE_FILE is a variable defined by FIND_PACKAGE( Qt4 ) that contains a path to CMake script) +# (QT_USE_FILE is a variable defined by FIND_PACKAGE( Qt5 ) that contains a path to CMake script) INCLUDE( ${QT_USE_FILE} ) IF (USE_PCH)