?? set-vars.bat
字號:
@echo offREM:=========================================================================REM: Master batch file to set up all necessary environment variables forREM: the SciTech makefile utilities. This batch file should be executedREM: *first* before any other batch files when you start a command shell.REM: You should not need to modify any batch files except this one toREM: configure the makefile utilities.REM:=========================================================================REM: Set the place where SciTech Software is installed, and where eachREM: of the supported compilers is installed. These environment variablesREM: are used by the batch files in the SCITECH\BIN directory.REM:REM: Modify the as appropriate for your compiler configuration (you shouldREM: only need to change things in this batch file).REM:REM: This version is for a normal MSDOS installation.REM: The SCITECH variable points to where batch files, makefile startups,REM: include files and source files will be found when compiling.SET SCITECH=c:\scitechREM: The SCITECH_LIB variable points to where the SciTech libraries liveREM: for installation and linking. This allows you to have the source andREM: include files on local machines for compiling and have the librariesREM: located on a common network machine (for network builds).SET SCITECH_LIB=%SCITECH%REM: The PRIVATE variable points to where private source files reside thatREM: do not live in the public source treeSET PRIVATE=c:\privateREM: The following sets up the path to the SciTech command line utilitiesREM: for the development operating system. We select either DOS hostedREM: tools or Win32 hosted tools depending on whether you are runningREM: on NT or not. Windows 9x users can use the Win32 hosted tools butREM: they run slower, but you will have long filenames if you do this.IF .%OS%==.Windows_NT goto Win32_pathIF NOT .%WINDIR%==. goto Win32_pathSET SCITECH_BIN=%SCITECH%\bin;%SCITECH%\bin-dosgoto path_setREM: The following sets up the path to the SciTech command line utilitiesREM: for the development operating system. This version uses the Win32REM: hosted tools by default, so you can use long filenames.:Win32_pathSET SCITECH_BIN=%SCITECH%\bin;%SCITECH%\bin-win32:path_setREM: Set the TMP variable for dmake if this is not already setSET TMP=%SCITECH%REM: Set the following environment variable to use the Netwide AssemblerREM: (NASM) provided with the MGL tools to build all assembler modules.REM: If you have Turbo Assembler 4.0 or later and you wish to use it,REM: you can use it by removing the following line.SET USE_NASM=1REM: The following is used to set up DDK directories for device driverREM: development. They can safely be ignored unless you are using theREM: SciTech makefile utilities to build device drivers.SET DDKDRIVE=c:SET MSSDK=c:\c\win32sdkSET W95_DDKROOT=c:\c\95ddkSET W98_DDKROOT=c:\c\98ddkSET NT_DDKROOT=c:\c\ntddkSET W2K_DDKROOT=c:\c\2000ddkSET MASM_ROOT=c:\c\masm611SET VTOOLSD=c:\c\vtd95SET SOFTICE_PATH=c:\c\sintREM: The following define the locations of all the compilers that you mayREM: be using. Change them to reflect where you have installed yourREM: compilers.SET BC3_PATH=c:\c\bc3SET BC4_PATH=c:\c\bc45SET BC5_PATH=c:\c\bc50SET BCB5_PATH=c:\c\bcb50SET VC_PATH=c:\c\msvcSET VC4_PATH=c:\c\vc42SET VC5_PATH=c:\c\vc50SET VC6_PATH=c:\c\vc60SET SC70_PATH=c:\c\sc75SET WC10A_PATH=c:\c\wc10aSET WC10_PATH=c:\c\wc10SET WC11_PATH=c:\c\wc11SET TNT_PATH=c:\c\tntSET DJ_PATH=c:\c\djgppSET GCC2_PATH=c:\unix\usrREM: The following define the locations of the IDE and compiler pathREM: tools for Visual C++. If you do a standard installation, you wontREM: need to change this. If however you did a custom install and changedREM: the paths to these directory, you will need to modify this to suit.SET VC5_MSDevDir=%VC5_PATH%\sharedideSET VC5_MSVCDir=%VC5_PATH%\vcSET VC6_MSDevDir=%VC6_PATH%\common\msdev98SET VC6_MSVCDir=%VC6_PATH%\vc98
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -