• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン105c0ba0ba114018f26ccc8d13770e32e27183f6 (tree)
日時2022-11-19 23:20:25
作者Fs <Fsu0413@vip....>
コミッターFs

ログメッセージ

全TM弄错了

変更サマリ

差分

--- a/qt6_deploy_host.vbs
+++ b/qt6_deploy_host.vbs
@@ -84,8 +84,11 @@ Set Qt6Dependencies_cmakeold = fso.OpenTextFile(PATH_TO_TARGET & "\lib\cmake\Qt6
8484
8585 Do until Qt6Dependencies_cmakeold.AtEndOfStream
8686 line = Qt6Dependencies_cmakeold.ReadLine
87- If Left(Trim(line), 38) = "set(__qt_platform_initial_qt_host_path" Then line = "set(__qt_platform_initial_qt_host_path ""${Qt6_DIR}/../../../host"")"
88- If Left(Trim(line), 48) = "set(__qt_platform_initial_qt_host_path_cmake_dir" Then line = "set(__qt_platform_initial_qt_host_path_cmake_dir ""${Qt6_DIR}/../../../host/lib/cmake"")"
87+ If Left(Trim(line), 48) = "set(__qt_platform_initial_qt_host_path_cmake_dir" Then
88+ line = "set(__qt_platform_initial_qt_host_path_cmake_dir ""${Qt6_DIR}/../../../host/lib/cmake"")"
89+ ElseIf Left(Trim(line), 38) = "set(__qt_platform_initial_qt_host_path" Then
90+ line = "set(__qt_platform_initial_qt_host_path ""${Qt6_DIR}/../../../host"")"
91+ End if
8992 Qt6Dependencies_cmake.WriteLine line
9093 Loop
9194
@@ -104,13 +107,12 @@ Set qt_toolchain_cmakeold = fso.OpenTextFile(PATH_TO_TARGET & "\lib\cmake\Qt6\qt
104107
105108 Do until qt_toolchain_cmakeold.AtEndOfStream
106109 line = qt_toolchain_cmakeold.ReadLine
107- If Left(Trim(line), 38) = "set(__qt_platform_initial_qt_host_path" Then
108- line = "set(__qt_platform_initial_qt_host_path ""${CMAKE_CURRENT_LIST_DIR}/../../../host"")"
109- qt_toolchain_cmakeold.ReadLine ' Qt 6.2.4 intentionally put the path to next line. It should be skipped.
110- End If
111110 If Left(Trim(line), 48) = "set(__qt_platform_initial_qt_host_path_cmake_dir" Then
112111 line = "set(__qt_platform_initial_qt_host_path_cmake_dir ""${CMAKE_CURRENT_LIST_DIR}/../../../host/lib/cmake"")"
113112 qt_toolchain_cmakeold.ReadLine
113+ ElseIf Left(Trim(line), 38) = "set(__qt_platform_initial_qt_host_path" Then
114+ line = "set(__qt_platform_initial_qt_host_path ""${CMAKE_CURRENT_LIST_DIR}/../../../host"")"
115+ qt_toolchain_cmakeold.ReadLine ' Qt 6.2.4 intentionally put the path to next line. It should be skipped.
114116 End If
115117 qt_toolchain_cmake.WriteLine line
116118 Loop