Skip to content

Commit

Permalink
Add miss~ing lib
Browse files Browse the repository at this point in the history
  • Loading branch information
raub committed Nov 21, 2024
1 parent a6ef6fa commit fb113d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/qt-copy-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# $2 is Qt platform path - /home/opc/6.8.0/gcc_arm64

# QML
cp $2/lib/libQt6Qml.so.6 $1/libQt6Qml.so.6
cp $2/lib/libQt6QmlMeta.so.6 $1/libQt6QmlMeta.so.6
cp $2/lib/libQt6QmlMeta.so.6 $1/libQt6QmlMeta.so.6
cp $2/lib/libQt6Quick.so.6 $1/libQt6Quick.so.6
cp $2/lib/libQt6QuickControls2.so.6 $1/libQt6QuickControls2.so.6
cp $2/lib/libQt6QuickTemplates2.so.6 $1/libQt6QuickTemplates2.so.6
Expand Down
7 changes: 6 additions & 1 deletion src/qt-copy-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
mkdir -p $1/QtQml.framework
mkdir -p $1/QtQml.framework/Versions
mkdir -p $1/QtQml.framework/Versions/Current
cp $2/lib/QtQml.framework/Versions/Current/QtQml $1/QtQml.framework/Versions/Current/QtGui
cp $2/lib/QtQml.framework/Versions/Current/QtQml $1/QtQml.framework/Versions/Current/QtQml

mkdir -p $1/QtQmlMeta.framework
mkdir -p $1/QtQmlMeta.framework/Versions
mkdir -p $1/QtQmlMeta.framework/Versions/Current
cp $2/lib/QtQmlMeta.framework/Versions/Current/QtQmlMeta $1/QtQmlMeta.framework/Versions/Current/QtQmlMeta

mkdir -p $1/QtQuick.framework
mkdir -p $1/QtQuick.framework/Versions
Expand Down
1 change: 1 addition & 0 deletions src/qt-copy-windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# QML
cp $2/bin/Qt6Qml.dll $1/Qt6Qml.dll
cp $2/bin/Qt6QmlMeta.dll $1/Qt6QmlMeta.dll
cp $2/bin/Qt6Quick.dll $1/Qt6Quick.dll
cp $2/bin/Qt6QuickControls2.dll $1/Qt6QuickControls2.dll
cp $2/bin/Qt6QuickTemplates2.dll $1/Qt6QuickTemplates2.dll
Expand Down

0 comments on commit fb113d8

Please sign in to comment.