blob: 00c4ff9ffa221c00ea432456d200cf87f85238ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
:: %1 is the input file js file
:: %2 is the solution directory
:: Change to the directory of the input file
cd %~p1
:: Make config.h
cscript //E:jscript %1 compiler=msvc
if errorlevel 1 echo %1: error: The javascript file failed to run.
:: Make sure the timestamp on config.h is current.
%2..\third_party\cygwin\bin\touch.exe ..\config.h
|