aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/configure_sdk.cmd
diff options
context:
space:
mode:
authorRichard Brooksby2012-08-15 15:10:27 +0100
committerRichard Brooksby2012-08-15 15:10:27 +0100
commit2124c8eccccad897a71e5fbd52dae2eecd70f45e (patch)
tree9a309833f0347ba1c083ad11f9d32c13de7c59cb /mps/code/configure_sdk.cmd
parentdbfad560d1dfcca2b62b503df84c89d4a3a36b3f (diff)
downloademacs-2124c8eccccad897a71e5fbd52dae2eecd70f45e.tar.gz
emacs-2124c8eccccad897a71e5fbd52dae2eecd70f45e.zip
Removing obsolete m9 platform.
Removing obsolete Visual C setup script. Copied from Perforce Change: 178933 ServerID: perforce.ravenbrook.com
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