# worklinkshot **Repository Path**: chuang-xia/worklinkshot ## Basic Information - **Project Name**: worklinkshot - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-08 - **Last Updated**: 2025-12-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 各平台编译打包说明2.0.7 ### windows #### 编译打包脚本 #### x64 release ``` ./build.sh -a x64 -t MinSizeRel -c rebuild -p "C:\Qt\5.15.0\msvc2019_64" -v "2.0.8" ``` #### x64 Debug ``` ./build.sh -a x64 -t Debug -c rebuild -p "C:\Qt\5.15.0\msvc2019_64" -v "2.0.7" ``` #### x86 release ``` ./build.sh -a win32 -t MinSizeRel -c rebuild -p "C:\Qt\5.15.0\msvc2019" -v "2.0.7" ``` #### x86 Debug ``` ./build.sh -a win32 -t Debug -c rebuild -p "C:\Qt\5.15.0\msvc2019" -v "2.0.7" ``` ### macOS #### 编译打包脚本 ``` sudo ./build.sh -a x64 -t MinSizeRel -c rebuild -p "/usr/local/Cellar/qt@5/5.15.10_1" -s "BEDA3F01BD0527E5B93C0412E083C14F7DC1B776" -v "2.0.7" ``` ### ubuntu #### 预安装 ``` sudo apt-get -y -qq update sudo apt-get -y --no-install-recommends install qt5-default qtcreator qttools5-dev-tools qttools5-dev libqt5dbus5 libqt5network5 libqt5core5a libqt5widgets5 libqt5gui5 libqt5svg5-dev python3 python3-pip sudo apt install qmlscene sudo cp /usr/bin/qmlscene /usr/lib/qt5/bin/ sudo apt install qtdeclarative5-dev sudo apt-get install libqt5webkit5-dev sudo apt-get install libqt5xmlpatterns5-dev sudo apt install libqt5webenginewidgets5 sudo apt install qtwebengine5-dev sudo apt install qtwebengine5-dev-tools sudo apt update sudo apt cmake sudo apt install ninja-build sudo apt-get install -yq appstream gettext extra-cmake-modules kirigami2-dev libkf5coreaddons-dev libkf5i18n-dev libkf5config-dev libkf5notifications-dev libkf5guiaddons-dev ``` ### x86_x64 #### 编译打包脚本 ``` ./build.sh -a x86-64 -t MinSizeRel -c rebuild -p "/lib/x86_64-linux-gnu/qt5" -bg "/usr/bin/g++" -v "2.0.7" ``` ### aarch64 #### 编译Qt源代码 5.15.5 Qt代码下载地址:https://download.qt.io/archive/qt/5.15/ #### 编译打包脚本 ``` ./build.sh -a aarch64 -t MinSizeRel -c rebuild -p "/usr/lib/aarch64-linux-gnu/qt5" -bg "/usr/bin/g++" -v "2.0.7" ```