• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revision1246c8ed45f285342d42d0546635f4cf5ebc7129 (tree)
Zeit2024-04-03 21:28:28
AutorFs <Fsu0413@vip....>
CommiterFs

Log Message

这文件啥时候出来的?

Ändern Zusammenfassung

Diff

--- a/qt6_deploy_host.sh
+++ b/qt6_deploy_host.sh
@@ -50,6 +50,7 @@ find "${PATH_TO_HOST}/lib/" -name '*.prl' -maxdepth 1 -exec cp '{}' "${PATH_TO_T
5050 ) > "${PATH_TO_TARGET}/bin/qmake"
5151
5252 chmod +x "${PATH_TO_TARGET}/bin/qmake"
53+[ -e "${PATH_TO_TARGET}/bin/qmake6" ] && cp "${PATH_TO_TARGET}/bin/qmake" "${PATH_TO_TARGET}/bin/qmake6"
5354
5455 (
5556 echo '#!/bin/sh'
@@ -61,6 +62,7 @@ chmod +x "${PATH_TO_TARGET}/bin/qmake"
6162 ) > "${PATH_TO_TARGET}/bin/qtpaths"
6263
6364 chmod +x "${PATH_TO_TARGET}/bin/qtpaths"
65+[ -e "${PATH_TO_TARGET}/bin/qtpaths6" ] && cp "${PATH_TO_TARGET}/bin/qtpaths" "${PATH_TO_TARGET}/bin/qtpaths6"
6466
6567 # judge if sed / gsed is GNU sed
6668 GNU_SED=
--- a/qt6_deploy_host.vbs
+++ b/qt6_deploy_host.vbs
@@ -49,6 +49,11 @@ Set qmake = fso.OpenTextFile(PATH_TO_TARGET & "\bin\qmake.bat", 2, True)
4949 qmake.WriteLine """%~dp0\..\host\bin\qmake"" -qtconf ""%~dp0\target_qt.conf"" %*"
5050 qmake.Close
5151
52+If fso.FileExists(PATH_TO_TARGET & "\bin\qmake6.bat") Then
53+ fso.DeleteFile PATH_TO_TARGET & "\bin\qmake6.bat"
54+ fso.CopyFile PATH_TO_TARGET & "\bin\qmake.bat", PATH_TO_TARGET & "\bin\qmake6.bat"
55+End If
56+
5257 fso.DeleteFile PATH_TO_TARGET & "\bin\qtpaths.bat"
5358
5459 Dim qtpaths
@@ -56,6 +61,11 @@ Set qtpaths = fso.OpenTextFile(PATH_TO_TARGET & "\bin\qtpaths.bat", 2, True)
5661 qtpaths.WriteLine """%~dp0\..\host\bin\qtpaths"" -qtconf ""%~dp0\target_qt.conf"" %*"
5762 qtpaths.Close
5863
64+If fso.FileExists(PATH_TO_TARGET & "\bin\qtpaths6.bat") Then
65+ fso.DeleteFile PATH_TO_TARGET & "\bin\qtpaths6.bat"
66+ fso.CopyFile PATH_TO_TARGET & "\bin\qtpaths.bat", PATH_TO_TARGET & "\bin\qtpaths6.bat"
67+End If
68+
5969 Dim target_qtconf
6070 Dim target_qtconfold
6171 Set target_qtconf = fso.OpenTextFile(PATH_TO_TARGET & "\bin\target_qt.conf.new", 2, True)