12 lines
361 B
Batchfile
12 lines
361 B
Batchfile
@echo off
|
|
|
|
REM If LLVM_INSTALL_DIR isn't set globally in your environment,
|
|
REM it can be set here_
|
|
REM set LLVM_INSTALL_DIR=c:\users\mmp\llvm-dev
|
|
REM set LLVM_VERSION=LLVM_3_2
|
|
|
|
REM Both the LLVM binaries and python need to be in the path
|
|
set path=%LLVM_INSTALL_DIR%\bin;%PATH%;c:\cygwin\bin
|
|
|
|
msbuild ispc.vcxproj /V:m /p:Platform=Win32 /p:Configuration=Release
|