diff options
author | Andrew <forkk@forkk.net> | 2013-03-13 13:42:41 -0500 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-03-13 13:42:41 -0500 |
commit | fd1e3bb814ca73744a9837b50b947a71de907c45 (patch) | |
tree | 42897e2ce1fe8446d061133768b1904c66ec96a1 /libgroupview/CMakeLists.txt | |
parent | 8864c7ebdc7c6591f17ed65a474113b66e974488 (diff) | |
download | PrismLauncher-fd1e3bb814ca73744a9837b50b947a71de907c45.tar.gz PrismLauncher-fd1e3bb814ca73744a9837b50b947a71de907c45.tar.bz2 PrismLauncher-fd1e3bb814ca73744a9837b50b947a71de907c45.zip |
Fixed issues with libGroupView on Windows.
Diffstat (limited to 'libgroupview/CMakeLists.txt')
-rw-r--r-- | libgroupview/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgroupview/CMakeLists.txt b/libgroupview/CMakeLists.txt index 9aa3013b..c53988a0 100644 --- a/libgroupview/CMakeLists.txt +++ b/libgroupview/CMakeLists.txt @@ -4,7 +4,7 @@ set(CMAKE_AUTOMOC ON) # Find Qt find_package(Qt5Core REQUIRED) -find_package(Qt5Gui REQUIRED) +find_package(Qt5Widgets REQUIRED) # Include Qt headers. include_directories(${Qt5Base_INCLUDE_DIRS}) @@ -38,4 +38,4 @@ include_directories(${CMAKE_BINARY_DIR}/include) add_definitions(-DLIBGROUPVIEW_LIBRARY) add_library(libGroupView SHARED ${LIBGROUPVIEW_SOURCES} ${LIBGROUPVIEW_HEADERS}) -qt5_use_modules(libGroupView Core Gui) +qt5_use_modules(libGroupView Core Widgets) |