You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -49,7 +59,13 @@ IF(SCM_SHOULD_ENABLE_CONVERTER AND NOT (QT_VERSION_MAJOR EQUAL "5"))
49
59
ENDIF(WIN32)
50
60
ADD_DEFINITIONS(-DSCM_CONVERTER_ENABLED_CPP) # Define for C++
51
61
ELSE()
52
-
MESSAGE(STATUS"Sky Culture Converter is DISABLED (Qt version 5 or SCM_SHOULD_ENABLE_CONVERTER is OFF). Please ensure you are using Qt 6 or later to enable it.")
62
+
IF(IS_QT_5)
63
+
MESSAGE(STATUS"Sky Culture Converter is DISABLED because it requires Qt 6 or later.")
64
+
ELSEIF(IS_WIN_ARM64)
65
+
MESSAGE(STATUS"Sky Culture Converter is DISABLED for Windows ARM64 builds (missing ARM64 tidy/gettext libraries).")
66
+
ELSE()
67
+
MESSAGE(STATUS"Sky Culture Converter is DISABLED.")
0 commit comments