Skip to content

Commit

Permalink
Corrected 2 space indents to 4 space indents in CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jahorta committed Jul 7, 2024
1 parent f006cd1 commit cc6d11f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ set(SRCS ${DolphinProcessSrc}
set(CMAKE_INCLUDE_CURRENT_DIR ON)

if (WIN32)
find_package(Qt6Widgets QUIET)
if (NOT Qt6Widgets_FOUND)
message(STATUS "Qt package not found, using external lib")
list(APPEND CMAKE_PREFIX_PATH "${CMAKE_CURRENT_LIST_DIR}\\..\\Externals\\Qt\\Qt6.5.3\\x64")
find_package(Qt6Widgets REQUIRED)
endif ()
find_package(Qt6Widgets QUIET)
if (NOT Qt6Widgets_FOUND)
message(STATUS "Qt package not found, using external lib")
list(APPEND CMAKE_PREFIX_PATH "${CMAKE_CURRENT_LIST_DIR}\\..\\Externals\\Qt\\Qt6.5.3\\x64")
find_package(Qt6Widgets REQUIRED)
endif ()
else ()
find_package(Qt6Widgets REQUIRED)
find_package(Qt6Widgets REQUIRED)
endif ()

find_package(Qt6Core REQUIRED)
Expand Down

0 comments on commit cc6d11f

Please sign in to comment.