Skip to content

Commit

Permalink
Fix minimum required Qt version
Browse files Browse the repository at this point in the history
  • Loading branch information
Gennady Pospelov committed May 8, 2020
1 parent ae202ea commit 7d2268d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/modules/configuration.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ file(MAKE_DIRECTORY ${TEST_OUTPUT_DIR})
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

find_package(Qt5 COMPONENTS Widgets Core Gui PrintSupport REQUIRED)
find_package(Qt5 5.12 COMPONENTS Widgets Core Gui PrintSupport REQUIRED)
find_package(Threads)

get_target_property(Qt5Widgets_location Qt5::Widgets LOCATION_Release)
message(STATUS " ${Qt5Widgets_LIBRARIES} ${Qt5Widgets_location}")
message(STATUS " Includes: ${Qt5Widgets_INCLUDE_DIRS}")
message(STATUS " Qt5 libraries : ${Qt5Widgets_LIBRARIES} ${Qt5Widgets_location}")
message(STATUS " Qt5 Includes : ${Qt5Widgets_INCLUDE_DIRS}")

# Generating config files

Expand Down

0 comments on commit 7d2268d

Please sign in to comment.