kopia lustrzana https://github.com/jameshball/osci-render
21 wiersze
429 B
Batchfile
21 wiersze
429 B
Batchfile
@echo off
|
|
if "%VisualStudioVersion%"=="" (
|
|
ECHO Visual Studio command line variables not detected!
|
|
ECHO This script will only work if you run it from a Visual Studio command line!
|
|
goto error_luajit
|
|
)
|
|
|
|
if /I "%VSTEL_MSBuildProjectFullPath:~-18%" neq "SharedCode.vcxproj" (
|
|
goto finish_luajit
|
|
)
|
|
|
|
cd ..\..\..\modules\LuaJIT\src
|
|
.\msvcbuild.bat static
|
|
goto finish_luajit
|
|
|
|
:error_luajit
|
|
|
|
timeout /T 10
|
|
|
|
:finish_luajit
|
|
@echo on |