Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cmake/Config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ find_dependency(SimpleRasters REQUIRED)

# Optional Qt dependency
if(@HAS_QT@)
find_dependency(Qt6 COMPONENTS Core Xml Test REQUIRED)
find_dependency(Qt5 COMPONENTS Core Xml Test REQUIRED)
# find_dependency(Qt6 COMPONENTS Core Xml Test REQUIRED)
if(@BUILD_GUI_APP@)
find_dependency(Qt6 COMPONENTS Widgets Gui REQUIRED)
find_dependency(Qt5 COMPONENTS Widgets Gui REQUIRED)
# find_dependency(Qt6 COMPONENTS Widgets Gui REQUIRED)
endif()
endif()

Expand Down
Loading