⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makewin32.bat

📁 本人收集整理的一份c/c++跨平台网络库
💻 BAT
字号:
REM $Id: makewin32.bat,v 1.2 2001/12/16 11:11:52 shadrack Exp $
@echo off

REM Comments, bugs go to johan@linkdata.se
REM Mail me on how to run the command line compiler, and I'll flame you. RTFM.

if defined INCLUDE goto ok
if not exist "\program files\microsoft visual studio\VC98\bin\vcvars32.bat" goto altloc1
call "\program files\microsoft visual studio\VC98\bin\vcvars32.bat"
goto ok

:altloc1
if not exist "\programs\microsoft visual studio\VC98\bin\vcvars32.bat" goto altloc2
call "\programs\microsoft visual studio\VC98\bin\vcvars32.bat"
goto ok

:altloc2
if not exist "\programs\msvs\VC98\bin\vcvars32.bat" goto runvc
call "\programs\msvs\VC98\bin\vcvars32.bat"
goto ok

:ok
if not defined INCLUDE goto runvc
if not exist config.h copy config.h.win32 config.h
nmake DEBUG=1 -f makefile.win32
nmake -f makefile.win32
goto done

:runvc
echo You need to run the VCVARS32.BAT batch file.
echo You'll find it in the Visual C++ binaries directory.
echo Also, when installing Visual C++, you are asked if to automatically
echo run this file when starting a command shell.

:done

⌨️ 快捷键说明

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