dotnet-installer/scripts/cmake-gen.cmd
Andrew Stanton-Nurse e70a169b28 Add a shared runtime aware host
And use it in dotnet-compile
2015-10-30 15:03:29 -07:00

10 lines
264 B
Batchfile

@echo off
REM Generate project files for the coreclr host
set CMAKE_OUTPUT=%~dp0..\src\corehost\cmake
if not exist %CMAKE_OUTPUT% mkdir %CMAKE_OUTPUT%
pushd %CMAKE_OUTPUT%
cmake .. -G "Visual Studio 14 2015 Win64"
if %errorlevel% neq 0 exit /b %errorlevel%
popd