Files
obs-ffmpeg-encoder/ci/appveyor-package.bat
T
Michael Fabian 'Xaymar' Dirks 35db9e714a ci: New scripts for AppVeyor
2019-06-28 20:34:26 +02:00

9 lines
364 B
Batchfile

@ECHO OFF
IF "%APPVEYOR_REPO_TAG%"=="true" (
ECHO -- Building 7z Archive --
cmake --build build/64 --target PACKAGE_7Z --config RelWithDebInfo
ECHO -- Building Zip Archive --
cmake --build build/64 --target PACKAGE_ZIP --config RelWithDebInfo
ECHO -- Building Installer --
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" /Qp ".\build\64\installer.iss" > nul
)