From 058343fecc9574b23c6b1d39424b657db063e726 Mon Sep 17 00:00:00 2001 From: danteruiz Date: Tue, 3 Sep 2019 18:05:13 -0700 Subject: [PATCH] fix window cmake --- launchers/qt/cmake/modules/FindQtStaticDeps.cmake | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/launchers/qt/cmake/modules/FindQtStaticDeps.cmake b/launchers/qt/cmake/modules/FindQtStaticDeps.cmake index 6924a7b9eb..b80080695a 100644 --- a/launchers/qt/cmake/modules/FindQtStaticDeps.cmake +++ b/launchers/qt/cmake/modules/FindQtStaticDeps.cmake @@ -5,9 +5,6 @@ set(qt_static_lib_dependices "qtfreetype" "Qt5AccessibilitySupport" "Qt5FbSupport" - "Qt5GraphicsSupport" - "Qt5CglSupport" - "Qt5ClipboardSupport" "Qt5OpenGLExtensions" "Qt5QuickTemplates2" "Qt5FontDatabaseSupport" @@ -16,6 +13,11 @@ set(qt_static_lib_dependices if (WIN32) elseif(APPLE) + set(qt_static_lib_dependices + ${qt_static_lib_dependices} + "Qt5GraphicsSupport" + "Qt5CglSupport" + "Qt5ClipboardSupport") endif() set(LIBS_PREFIX "${_qt5Core_install_prefix}/lib/")