From f1eb1296e4c50148b360e7b433a7c8cdbb0a95f0 Mon Sep 17 00:00:00 2001 From: Ryan Latture Date: Mon, 9 Nov 2015 12:01:17 -0800 Subject: [PATCH] Removed default path to Qt5 widgets in cmake configuration. Should instead be provided by user with CMAKE_PREFIX_PATH pointing to Qt root directory. --- gui/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 0fb73b5..a4971f8 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -1,10 +1,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) -# Replace the path in the quotations to the folder that contains -# the Qt5WidgetsConfig.cmake file. Otherwise, CMake will not be able -# to find the libraries required to build the GUI -set(Qt5Widgets_DIR "/Users/ryan/Qt/5.5/clang_64/lib/cmake/Qt5Widgets" CACHE STRING "Path to the Qt5WidgetsConfig.cmake file.") find_package(Qt5Widgets) qt5_add_resources(fea_gui_resources fea_gui.qrc)