cef/cef_create_projects.bat

12 lines
339 B
Batchfile

@echo off
ECHO Patching build configuration files...
CALL tools\patch_build.bat
ECHO Generating project files...
CALL :SET_ENV %CD%
:GEN_PROJ
CALL ..\tools\gyp\gyp.bat cef.gyp -I ..\build\common.gypi -I ..\build\features_override.gypi -I cef.gypi --no-circular-check
GOTO :END
:SET_ENV
SET CEF_DIRECTORY=%~n1
GOTO :GEN_PROJ
:END