From 10769f6f2ef2024625497c45dffe8e1741b5eae0 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 24 Mar 2019 15:04:47 -0400 Subject: [PATCH] Appveyor build issues Revert some externeous changes in build_win.bat to see what happens. --- build_win.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build_win.bat b/build_win.bat index f5693d53..94a22433 100644 --- a/build_win.bat +++ b/build_win.bat @@ -8,17 +8,17 @@ @rem Ensure correct command prompt @if not defined INCLUDE goto :BADCMD -@rem Set compile and link options here -@setlocal -@set JANET_COMPILE=cl /nologo /Isrc\include /c /O2 /W3 /LD /D_CRT_SECURE_NO_WARNINGS -@set JANET_LINK=link /nologo - @rem Sub commands @if "%1"=="help" goto HELP @if "%1"=="clean" goto CLEAN @if "%1"=="test" goto TEST @if "%1"=="dist" goto DIST +@rem Set compile and link options here +@setlocal +@set JANET_COMPILE=cl /nologo /Isrc\include /c /O2 /W3 /LD /D_CRT_SECURE_NO_WARNINGS +@set JANET_LINK=link /nologo + mkdir build mkdir build\core mkdir build\mainclient