readme.txt

来自「《24小时教会你游戏编程》上的源码」· 文本 代码 · 共 23 行

TXT
23
字号
Teach Yourself Game Programming in 24 Hours - Examples
======================================================
Borland C++Builder Command Line Tools


INTRO
===============
Borland C++Builder Command Line Tools are a suite of command-line tools that allow you to build Windows applications from a Windows Command Prompt. Although you can compile an application using the bcc32 compiler directly, it is much easier to take advantage of a make file to invoke the C++ compiler, resource compiler, and linker. Make files are included for each example program and game in the book, and are named Example.mak, where Example is the name of the example. In addition to make files, there are also batch files that make it very easy to invoke the make file to build each example. The batch files are all named Build.bat, and there is one in each example folder.

GETTING STARTED
===============
Following are the steps required to successfully use the Borland C++Builder Command Line Tools, which are also located on this CD-ROM. Install the tools by running the installation program found in the appropriate Borland folder on the CD-ROM. Once the tools are installed, follow these steps to begin building the examples:

1. Copy the bcc32.cfg and ilink32.cfg configuration files from this folder of the CD-ROM to the bin folder beneath the Borland tools installation.

2. Open both configuration files in Notepad, and make sure the paths to the Borland tools accurately describe your installation. In other words, make sure that \Borland\Bcc55 is where the tools were installed on your computer, or adjust the path to reflect the actual installation folder.

3. If the paths in the configuration files needed modifying, you'll need to modify the path in the Build.bat batch file for each example before building the example. If not, you're ready to begin building the examples by simply double-clicking the file Build.bat.

TESTING
===============
To test the examples, just go to the appropriate example folder and double-click the .exe file for the example. The examples are already built, so you don't have to build them in order to test them. Have fun!

⌨️ 快捷键说明

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