1
0
This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siadrive/3rd-party/CEF/create_release.cmd
Scott Graves f647c45712 CEF changes
2017-03-17 12:27:46 -05:00

33 lines
694 B
Batchfile

@echo off
set ROOT=%~dp0%
pushd %ROOT%
set PATH=%ROOT%\depot_tools;%PATH%
call create_common.cmd || goto :ERROR
pushd chromium_git
set CEF_USE_GN=1
set GN_ARGUMENTS=--ide=vs2015 --sln=cef --filters=//cef/*
call python ..\automate\automate-git.py --download-dir=%ROOT%\chromium_git --depot-tools-dir=%ROOT%\depot_tools --no-distrib --no-build || goto :ERROR
popd
pushd chromium_git\chromium\src\cef
set CEF_USE_GN=1
set GN_ARGUMENTS=--ide=vs2015 --sln=cef --filters=//cef/*
call cef_create_projects.bat || goto :ERROR
popd
pushd chromium_git\chromium\src
call ninja -C out\Release_GN_x64 cef || goto :ERROR
popd
goto :END
:ERROR
pause
popd
exit 1
:END
popd
exit 0