setup_env_common.bat

来自「文件驱动加密,功能强大,可产生加密分区,支持AES,MD2,MD4,MD5MD2」· Batch 代码 · 共 44 行

BAT
44
字号
@echo off

rem -- Configure all items in this block --

rem Build debug (1) or release (0)
set FREEOTFE_DEBUG=0

rem Build target OS - set the following to one of: W2K/WXP/WNET
set FREEOTFE_TARGET=WXP

rem Project drive and directory; the base directory where the source code is
set PROJECT_DRIVE=E:
set PROJECT_DIR=%PROJECT_DRIVE%\DEV\SARAH_DEAN_EXISTING\Under_SCC\FreeOTFE\DEVELOPMENT_SRC\src\PC\drivers
set BIN_OUTPUT_DIR=%PROJECT_DRIVE%\DEV\SARAH_DEAN_EXISTING\Under_SCC\FreeOTFE\DEVELOPMENT_SRC\bin\PC\

rem SDK directory
set MSSDK_DIR=C:\MSSDK


rem DDK directory
set MSDDK_DIR=C:\WINDDK\3790



rem -- Items below this line should probably not need changing --

rem Set the VS environment
call vcvars32

rem Set the SDK build environment
rem !!!!!!!!!!!!!!!!!
rem !!!  WARNING  !!!
rem !!!!!!!!!!!!!!!!!
rem IF CHANGING BETWEEN DEBUG/RETAIL, UPDATE setup_env_driver.bat AS WELL
if %FREEOTFE_DEBUG%==1 goto DEBUG
  rem Configure up for retail (release) build
  call %MSSDK_DIR%\SetEnv.Bat /RETAIL
goto EXIT
:DEBUG
  rem Configure up for debug build
  call %MSSDK_DIR%\SetEnv.Bat /DEBUG
:EXIT

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?