# qml01 **Repository Path**: weekend/qml01 ## Basic Information - **Project Name**: qml01 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-27 - **Last Updated**: 2026-07-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## build with conan ```bash conan install . --output-folder=conan_build --build=missing -s build_type=Release cmake -S . -B build -DCMAKE_BUILD_TYPE=Release cmake --build build --config Release ``` ## build qt5 ```bash ``` ```bat @echo off SET "VCVAR64_VS2017=F:\App\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" CALL "%VCVAR64_VS2017%" REM Edit this location to point to the source code of Qt SET _ROOT=C:\qt5 SET PATH=%_ROOT%\qtbase\bin;%_ROOT%\gnuwin32\bin;%PATH% REM Uncomment the below line when using a git checkout of the source repository SET PATH=%_ROOT%\qtrepotools\bin;%PATH% REM Uncomment the below line when building with OpenSSL enabled. If so, make sure the directory points REM to the correct location (binaries for OpenSSL). REM SET PATH=C:\OpenSSL-Win32\bin;%PATH% REM When compiling with ICU, uncomment the lines below and change appropriately: REM SET INCLUDE=\include;%INCLUDE% REM SET LIB=\lib;%LIB% REM SET PATH=\lib;%PATH% REM Contrary to earlier recommendations, do NOT set QMAKESPEC. SET _ROOT= REM Keeps the command line open when this script is run. cmd /k ``` ## 参考 - [x] [QML 教程](https://doc.qt.io/qt-6/zh/qml-tutorial.html) - [x] [QML 性能考虑因素和建议](https://doc.qt.io/qt-6.8/zh/qtquick-performance.html) - [x] [Qt 示例和教程](https://doc.qt.io/qt-6.8/zh/qtexamplesandtutorials.html) - [x] [QML 语法基础](https://doc.qt.io/qt-6.8/zh/qtqml-syntax-basics.html) - [x] [conan qt](https://conan.io/center/recipes/qt)