From 8d9f08a74a7d153d26a4a6b4503b4c1b128e0a30 Mon Sep 17 00:00:00 2001 From: Peinthor Rene Date: Sun, 27 Jul 2014 20:26:04 +0200 Subject: [PATCH] qt5: fix qt5 cmake build --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 647f110e..76a559b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,8 @@ add_subdirectory(${QHEXEDIT_DIR}) add_subdirectory(${QCUSTOMPLOT_DIR}) if(USE_QT5) - find_package(Qt5Widgets REQUIRED) + find_package(Qt5Widgets REQUIRED) + find_package(Qt5LinguistTools REQUIRED) set(CMAKE_AUTOMOC ON) set(CMAKE_INCLUDE_CURRENT_DIR ON) else()