mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-31 19:45:27 +01:00
12 lines
284 B
Batchfile
12 lines
284 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 cef.gypi
|
||
|
GOTO :END
|
||
|
:SET_ENV
|
||
|
SET CEF_DIRECTORY=%~n1
|
||
|
GOTO :GEN_PROJ
|
||
|
:END
|