Skip to content

Commit

Permalink
Partial revert of ff9f283
Browse files Browse the repository at this point in the history
Because there is no QT_WRAP_UI
  • Loading branch information
elpaso committed Dec 12, 2022
1 parent 6c48145 commit 16cb755
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/auth/oauth2/CMakeLists.txt
Expand Up @@ -80,8 +80,12 @@ if (WITH_GUI)
)

set(AUTH_OAUTH2_UIS gui/qgsauthoauth2edit.ui)

QT_WRAP_UI(AUTH_OAUTH2_UIS_H ${AUTH_OAUTH2_UIS})
if (BUILD_WITH_QT6)
QT6_WRAP_UI(AUTH_OAUTH2_UIS_H ${AUTH_OAUTH2_UIS})
else()
QT5_WRAP_UI(AUTH_OAUTH2_UIS_H ${AUTH_OAUTH2_UIS})
endif()

endif()

############################################################
Expand Down

0 comments on commit 16cb755

Please sign in to comment.