加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
autogen.bat 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
董一龙 提交于 2022-05-21 16:18 . duration改变形式
@REM
@REM QtMediaPlayer(app) & MediaPlayerTest(kernel) & QtPlayer(front end) Build script for Win32 platform
@REM
@REM You'll need Visual C++ installed to compile - also execute the
@REM "vcvars32.bat" in VC install directotry before running this one.
@REM
@REM Copyright (c) yilongdong
@REM
@if "%DevEnvDir%"=="" goto nodevdir
cmake -B Build
@REM 播放内核
@REM devenv Build\Kernel\AVKernel.sln /Build "Debug|x64"
devenv Build\Kernel\AVKernel.sln /Build "Release|x64"
@REM 播放前端
@REM devenv Build\App\QtPlayer.sln /Build "Debug|x64"
@REM devenv Build\App\QtPlayer.sln /Build "Release|x64"
@REM 整个项目
@REM devenv Build\QtMediaPlayer.sln /Build "Debug|x64"
devenv Build\QtMediaPlayer.sln /Build "Release|x64"
@REM Build\App\Release\QtFrontEnd.exe
@goto end
:nodevdir
@echo off
echo ******************************************************************************************
echo ** " "
echo ** "ERROR: Visual Studio path not set. "
echo ** " "
echo ** "Open 'tools'->'Developer Command Prompt' from Visual Studio IDE, or set devenv path. "
echo ** "e.g. Set ENV_PATH = xxx\Microsoft Visual Studio\xx\Community\Common7\IDE\devenv.exe, "
echo ** "then try again. "
echo ** " "
echo ******************************************************************************************
echo end
:end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化