Skip to content

Commit

Permalink
fix(CMake): Set Qt5 minimum target
Browse files Browse the repository at this point in the history
  • Loading branch information
Dax89 committed Sep 8, 2023
1 parent 1b6c566 commit c2e47af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ set(REDASM_GIT_VERSION "unknown")
set(REDASM_VERSION_BASE "3.0-BETA7")

find_package(Git)
find_package(Qt6 COMPONENTS Widgets)
# find_package(Qt6 COMPONENTS Widgets)

if(NOT Qt6_FOUND)
find_package(Qt5 REQUIRED COMPONENTS Widgets)
find_package(Qt5 "5.11" REQUIRED COMPONENTS Widgets)
find_package(Qt5LinguistTools)
endif()

Expand Down

0 comments on commit c2e47af

Please sign in to comment.