Game Development Community

Where is the search button?

by Richard Dost · in Torque Game Engine · 04/15/2004 (12:43 am) · 1 replies

Can i search in the documents? Is it a missing thing or am i missing it somewhere?
Or at least is it possible to make it downloadable and maybe make it a .chm so it can be easily searchable?
thanks,

#1
04/15/2004 (2:58 am)
You can make a .chm of the doxygen docs. You'll have to regenerate them from the source. Follow the docs for how to do that, but before you run doxygen, edit doc\doxygen\html\doxygen.html.cfg

Search for the HTML section (search for GENERATE_HTMLHELP, its line 102 here)

These are the settings I use for that section:

GENERATE_HTMLHELP = YES
CHM_FILE = torque.chm
HHC_LOCATION = "C:/Program Files/HTML Help Workshop/hhc.exe"
GENERATE_CHI = NO
BINARY_TOC = NO
TOC_EXPAND = YES
DISABLE_INDEX = YES
ENUM_VALUES_PER_LINE = 1
GENERATE_TREEVIEW = NO
TREEVIEW_WIDTH = 250

They're probably far from optimal, but they worked to generate a usable .chm file here.

Side note: You'll need HTMLHelp Workshop from Microsoft, which should be available on their site somewhere. It also comes with VC++ if I remember correctly.

Tom.