aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/configure_sdk.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code/configure_sdk.cmd')
-rw-r--r--mps/code/configure_sdk.cmd33
1 files changed, 0 insertions, 33 deletions
diff --git a/mps/code/configure_sdk.cmd b/mps/code/configure_sdk.cmd
deleted file mode 100644
index 8a67d289274..00000000000
--- a/mps/code/configure_sdk.cmd
+++ /dev/null
@@ -1,33 +0,0 @@
1@ECHO OFF
2REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3REM $Id$
4REM $Change$ $DateTime$ $Author$
5REM
6REM Configure access to the Microsoft SDK.
7REM
8REM This procedure has only been tested under NT6.1. Earlier versions
9REM of the operating system will have different SDK configuration
10REM details.
11REM
12REM This procedure requires delayed environment expansion.
13REM The presence of REG in the command path is assumed.
14REM
15REM The registry is queried to determine the SDK installation location
16REM and its SETENV command procedure is invoked to configure it.
17REM Note that SETENV, as installed, has a tendency to alter the color
18REM settings for the console.
19REM
20REM Copyright (C) 2011 Ravenbrook Limited. All rights reserved.
21REM
22REM -------------------------------------------------------------------
23REM
24SET WinSDKRegKeyPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1
25
26FOR /F "tokens=2*" %%A IN ('REG QUERY "%WinSDKRegKeyPath%" /v InstallationFolder') DO SET WindowsSDKDir=%%B
27
28SET "sdkdir=%WindowsSDKDir%"
29
30%sdkdir%\bin\setenv
31
32REM -- End of program
33