aboutsummaryrefslogtreecommitdiff
path: root/methods.py
diff options
context:
space:
mode:
authoryg2f2016-10-26 19:07:58 +0200
committeryg2f2016-10-26 19:29:30 +0200
commitf7773d499dcd1d9580616dd1ba03f7382ac44cae (patch)
treeebc27e76e87fdcb6eb9f74f22cfc96d854adbde5 /methods.py
parentc67e3a485dedae96b82c3356d5f45ab0509d7759 (diff)
downloadgodot-f7773d499dcd1d9580616dd1ba03f7382ac44cae.tar.gz
godot-f7773d499dcd1d9580616dd1ba03f7382ac44cae.tar.zst
godot-f7773d499dcd1d9580616dd1ba03f7382ac44cae.zip
Diffstat (limited to 'methods.py')
-rwxr-xr-xmethods.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/methods.py b/methods.py
index 477fe4f12..bd5409e3d 100755
--- a/methods.py
+++ b/methods.py
@@ -1516,11 +1516,6 @@ def detect_visual_c_compiler_version(tools_env):
return vc_chosen_compiler_str
-def msvc_is_detected() :
- # looks for VisualStudio env variable
- # or for Visual C++ Build Tools (which is a standalone MSVC)
- return os.getenv("VSINSTALLDIR") or os.getenv("VS100COMNTOOLS") or os.getenv("VS110COMNTOOLS") or os.getenv("VS120COMNTOOLS") or os.getenv("VS140COMNTOOLS");
-
def precious_program(env, program, sources, **args):
program = env.ProgramOriginal(program, sources, **args)