aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.bat2
1 files changed, 2 insertions, 0 deletions
diff --git a/install.bat b/install.bat
index de572d3d..c3099988 100644
--- a/install.bat
+++ b/install.bat
@@ -436,6 +436,8 @@ end
436-- returns the batch command to setup msvc compiler path. 436-- returns the batch command to setup msvc compiler path.
437-- requires vars.LUA_RUNTIME and vars.UNAME_M to be set before calling this function. 437-- requires vars.LUA_RUNTIME and vars.UNAME_M to be set before calling this function.
438local function get_msvc_env_setup_cmd() 438local function get_msvc_env_setup_cmd()
439 if USE_MINGW then return "" end -- Don't setup msvc for MinGW.
440
439 local product_dir = get_visual_studio_directory() 441 local product_dir = get_visual_studio_directory()
440 local x64 = vars.UNAME_M=="x86_64" 442 local x64 = vars.UNAME_M=="x86_64"
441 443