# ev_comm_tool **Repository Path**: zh0uyun/ev_comm_tool ## Basic Information - **Project Name**: ev_comm_tool - **Description**: No description available - **Primary Language**: Unknown - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-24 - **Last Updated**: 2025-10-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # implemented in Qt6 ## requirements - Qt 6.9 - CMake && Ninja - Qt components: Core Widgets SerialPort ## build Please use the qt6 cmake toolchain(Qt Creater or Qt command-line tools) to build. ```bash # Qt command-line tools build example in Windows set PATH=C:\Qt\6.9.1\msvc2022_64\bin;%PATH% set toolchain_file="C:/Qt/6.9.1/msvc2022_64/lib/cmake/Qt6/qt.toolchain.cmake" call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 cmake -B build -G "Ninja" -DCMAKE_TOOLCHAIN_FILE=%toolchain_file% -DCMAKE_BUILD_TYPE=Release -S . cmake --build build --config Release -j ```