├── .gitignore ├── ChangeLogs.md ├── DeployQt.pro ├── LICENSE ├── Qml ├── About │ └── About.qml ├── Common │ ├── ComboBox.qml │ ├── ContentBar.qml │ ├── MyButton.qml │ ├── MyComboBox.qml │ └── RoundRectangle.qml ├── TipsDialog.qml └── main.qml ├── README.md ├── Resource ├── Qtbig.png └── Qtbig_qrcode.jpg ├── Test ├── Qt程序打包工具V1.0.gif ├── Qt程序打包工具V1.0.mp4 ├── Qt程序打包工具V1.0.png └── exe_demo │ ├── Qt_5_12_2_MSVC_2017_x86_Release_QML_Plugin_Test.exe │ ├── Qt_5_12_2_MSVC_2017_x86_Release_QML_Test.exe │ ├── Qt_5_12_2_MSVC_2017_x86_Release_Test.exe │ └── Qt_5_12_2_Mingw_730_x86_Release_Test.exe ├── ToolsModel.cpp ├── ToolsModel.h ├── VersionModel.cpp ├── VersionModel.h ├── app.ico ├── main.cpp ├── qml.qrc └── resources.qrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/ChangeLogs.md -------------------------------------------------------------------------------- /DeployQt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/DeployQt.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/LICENSE -------------------------------------------------------------------------------- /Qml/About/About.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/About/About.qml -------------------------------------------------------------------------------- /Qml/Common/ComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/Common/ComboBox.qml -------------------------------------------------------------------------------- /Qml/Common/ContentBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/Common/ContentBar.qml -------------------------------------------------------------------------------- /Qml/Common/MyButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/Common/MyButton.qml -------------------------------------------------------------------------------- /Qml/Common/MyComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/Common/MyComboBox.qml -------------------------------------------------------------------------------- /Qml/Common/RoundRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/Common/RoundRectangle.qml -------------------------------------------------------------------------------- /Qml/TipsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/TipsDialog.qml -------------------------------------------------------------------------------- /Qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Qml/main.qml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/README.md -------------------------------------------------------------------------------- /Resource/Qtbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Resource/Qtbig.png -------------------------------------------------------------------------------- /Resource/Qtbig_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Resource/Qtbig_qrcode.jpg -------------------------------------------------------------------------------- /Test/Qt程序打包工具V1.0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/Qt程序打包工具V1.0.gif -------------------------------------------------------------------------------- /Test/Qt程序打包工具V1.0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/Qt程序打包工具V1.0.mp4 -------------------------------------------------------------------------------- /Test/Qt程序打包工具V1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/Qt程序打包工具V1.0.png -------------------------------------------------------------------------------- /Test/exe_demo/Qt_5_12_2_MSVC_2017_x86_Release_QML_Plugin_Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/exe_demo/Qt_5_12_2_MSVC_2017_x86_Release_QML_Plugin_Test.exe -------------------------------------------------------------------------------- /Test/exe_demo/Qt_5_12_2_MSVC_2017_x86_Release_QML_Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/exe_demo/Qt_5_12_2_MSVC_2017_x86_Release_QML_Test.exe -------------------------------------------------------------------------------- /Test/exe_demo/Qt_5_12_2_MSVC_2017_x86_Release_Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/exe_demo/Qt_5_12_2_MSVC_2017_x86_Release_Test.exe -------------------------------------------------------------------------------- /Test/exe_demo/Qt_5_12_2_Mingw_730_x86_Release_Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/Test/exe_demo/Qt_5_12_2_Mingw_730_x86_Release_Test.exe -------------------------------------------------------------------------------- /ToolsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/ToolsModel.cpp -------------------------------------------------------------------------------- /ToolsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/ToolsModel.h -------------------------------------------------------------------------------- /VersionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/VersionModel.cpp -------------------------------------------------------------------------------- /VersionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/VersionModel.h -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/app.ico -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/main.cpp -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/qml.qrc -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/DeployQt/HEAD/resources.qrc --------------------------------------------------------------------------------