From e63c34e7cdd8a8b74048303ab53689c1ba415fe2 Mon Sep 17 00:00:00 2001 From: abenmos Date: Thu, 3 Oct 2024 11:07:27 -0400 Subject: [PATCH] Updates for 2.11 release. --- .../cmake/devtools_qt_helper.cmake | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/radeon_gpu_analyzer_gui/cmake/devtools_qt_helper.cmake b/source/radeon_gpu_analyzer_gui/cmake/devtools_qt_helper.cmake index 5c53d68..e6ca4e0 100644 --- a/source/radeon_gpu_analyzer_gui/cmake/devtools_qt_helper.cmake +++ b/source/radeon_gpu_analyzer_gui/cmake/devtools_qt_helper.cmake @@ -31,6 +31,17 @@ if (NOT Qt6_DIR) endif () endif () +# linuxdeployqt +if (UNIX AND NOT APPLE) + + find_program(LINUXDEPLOYQT "linuxdeployqt" HINTS "${PROJECT_SOURCE_DIR}/external/linuxdeployqt") + if (LINUXDEPLOYQT) + message(STATUS "Found linuxdeployqt: ${LINUXDEPLOYQT}") + else () + message(ERROR "linuxdeployqt not found but is required for build") + endif () +endif () + if (Qt5_DIR OR Qt6_DIR) ####################################################################################################################### # Setup the INSTALL target to include Qt DLLs