aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/setenv.bat
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-04-27 19:19:56 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-04-27 19:19:56 +0300
commit974bd0388994715b4fa35ac54986e3c1ed4e3f55 (patch)
tree53b23c15bde662804ecb7ef8f54026ff883a7cc2 /setenv.bat
parentsysenter: add missing configurations to solution (diff)
downloadwindows7-drivers-974bd0388994715b4fa35ac54986e3c1ed4e3f55.tar.gz
windows7-drivers-974bd0388994715b4fa35ac54986e3c1ed4e3f55.zip
reorganize files
* src/ -> km/src/ * utils/ -> um/ * Move WDK 7.1-specific *.bat files to km/build/wdk7.1/ * Move WDK 8.1 Update 1 solutions to km/build/wdk8.1update/
Diffstat (limited to 'setenv.bat')
-rw-r--r--setenv.bat31
1 files changed, 0 insertions, 31 deletions
diff --git a/setenv.bat b/setenv.bat
deleted file mode 100644
index ee164df..0000000
--- a/setenv.bat
+++ /dev/null
@@ -1,31 +0,0 @@
-@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-@rem This file is part of the "Windows 7 drivers" project.
-@rem For details, see https://github.com/egor-tensin/windows7-drivers.
-@rem Distributed under the MIT License.
-
-@echo off
-
-set "root=%~dp0%"
-set "src_root=%root%src"
-set "bin_root=%root%bin"
-set "lib_root=%root%lib"
-
-set target_configuration=Release
-
-if not defined _BUILDARCH (
- echo Error: %%_BUILDARCH%% is not defined ^(have you set up the WinDDK environment?^) >&2
- exit /b 1
-)
-
-if "%_BUILDARCH%" == "AMD64" (
- set target_platform=x64
- exit /b 0
-)
-
-if "%_BUILDARCH%" == "x86" (
- set target_platform=x86
- exit /b 0
-)
-
-echo Error: invalid %%_BUILDARCH%% value "%_BUILDARCH%" ^(the only supported architecture is x86^(-64^)^) >&2
-exit /b 1