Skip to content

Commit

Permalink
refactor: Minor rearrange in CmakeLists (#866)
Browse files Browse the repository at this point in the history
To improve readability and show detected Qt version
  • Loading branch information
pktiuk authored Nov 14, 2023
1 parent 7880fc7 commit 14e76c4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@


cmake_minimum_required(VERSION 3.12)
set(QT_REQUIRED_VERSION 5.8)
set(SDL_REQUIRED_VERSION 2.0.6)
project(antimicrox)

if(POLICY CMP0071)
Expand Down Expand Up @@ -520,8 +518,10 @@ endif(UNIX)
# PACKAGES
###############################

find_package(Qt5Widgets ${QT_REQUIRED_VERSION} REQUIRED)
set(QT_REQUIRED_VERSION 5.8)
find_package(Qt5Core ${QT_REQUIRED_VERSION} REQUIRED)
message("Found QT: ${Qt5Core_VERSION_STRING}")
find_package(Qt5Widgets ${QT_REQUIRED_VERSION} REQUIRED)
find_package(Qt5Gui ${QT_REQUIRED_VERSION} REQUIRED)
find_package(Qt5Network ${QT_REQUIRED_VERSION} REQUIRED)
find_package(Qt5LinguistTools ${QT_REQUIRED_VERSION} REQUIRED)
Expand All @@ -533,6 +533,7 @@ QT5_ADD_RESOURCES(antimicrox_RESOURCES_RCC ${antimicrox_RESOURCES})
add_subdirectory("share/antimicrox/translations")
set(CMAKE_POSITION_INDEPENDENT_CODE ON)

set(SDL_REQUIRED_VERSION 2.0.6)
find_package(SDL2 REQUIRED)

if(WITH_X11)
Expand Down

0 comments on commit 14e76c4

Please sign in to comment.