Skip to content

NoNoResults/sast-music

 
 

Repository files navigation

SAST Music

NJUPT SAST2023.C++ WoC

简介

桌面端云音乐播放器,使用Qt6编写

Build

fork 本仓库后,执行以下命令

Note

请将 <YOUR_USERNAME>/<YOUR_REPO_NAME> 更换为你的用户名和仓库地址

git clone --recursive https://github.com/<YOUR_USERNAME>/<YOUR_REPO_NAME>.git 

Use your IDE (QtCreator or CLion) to open. Only CMake support.

已知问题及解决方法

  • Linux平台CMake生成报错

    保证目录下存在build文件夹后再执行CMake,或执行第二遍CMake

  • Linux平台编译报错,无法创建文件夹 /usr/lib/qt6/qml/FluentUI

    sudo chmod 777 /usr/lib/qt6/qml
  • Linux平台运行报错:use incomplete Qt library(5.15)

    libs/FluentUI/CMakeLists.txt

    find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core)

    改为

    find_package(QT NAMES Qt6REQUIRED COMPONENTS Core)

    重新编译后再将其改回去

  • CMake find_package 报错

    下载安装缺少的组件,例如 Qt6::MultiMedia

Tasks & API Docs

wiki

About

NJUPT SAST.2023 WoC 项目

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 52.2%
  • QML 40.7%
  • CMake 5.3%
  • C 1.1%
  • PowerShell 0.7%